Skip to content

Instantly share code, notes, and snippets.

View ganouar's full-sized avatar

Arouna GANOU ganouar

  • LSEG
  • France
View GitHub Profile
@ganouar
ganouar / zabbix-docker-compose.yml
Created June 9, 2022 21:44 — forked from balvinder294/zabbix-docker-compose.yml
Zabbix running in Docker Compose with Postgres, Graffana, Adminer
version: '3.1'
services:
postgres-server: # The Postgres Database Service
image: postgres:latest
restart: always
environment: # Username, password and database name variables
POSTGRES_USER: zabbix
POSTGRES_PASSWORD: zabbix
POSTGRES_DB: zabbix
PG_DATA: /var/lib/postgresql/data/pgdata #data storage
@ganouar
ganouar / README.md
Created December 21, 2020 12:00 — forked from natemcmaster/README.md
runtimeconfig.json schema

This defines the schema for .NET Core's runtimeconfig.json file.

Usage in an editor

Using Visual Studio, you can get auto-completion if you import the schema in your .JSON file like this:

{
  "$schema": "https://gist.github.com/natemcmaster/0bdee16450f8ec1823f2c11af880ceeb/raw/runtimeconfig.template.schema.json"
}