Add example for using Postgres

This commit is contained in:
TwinProduction
2021-09-10 19:21:43 -04:00
parent 20487790ca
commit dafd547656
3 changed files with 70 additions and 0 deletions

View File

@ -0,0 +1,27 @@
version: "3.9"
services:
postgres:
image: postgres
volumes:
- ./data/db:/var/lib/postgresql/data
environment:
- POSTGRES_DB=gatus
- POSTGRES_USER=username
- POSTGRES_PASSWORD=password
networks:
- web
gatus:
image: twinproduction/gatus:latest
restart: always
ports:
- 8080:8080
volumes:
- ./config.yaml:/config/config.yaml
networks:
- web
depends_on:
- postgres
networks:
web: