mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-21 23:43:27 +01:00
aa7f8131cd
* docs: demonstrate use of environment variables in config * chore: reorder env vars to match order used in DB connection
34 lines
603 B
YAML
34 lines
603 B
YAML
version: "3.9"
|
|
services:
|
|
postgres:
|
|
image: postgres
|
|
volumes:
|
|
- ./data/db:/var/lib/postgresql/data
|
|
ports:
|
|
- "5432:5432"
|
|
environment:
|
|
- POSTGRES_DB=gatus
|
|
- POSTGRES_USER=username
|
|
- POSTGRES_PASSWORD=password
|
|
networks:
|
|
- web
|
|
|
|
gatus:
|
|
image: twinproduction/gatus:latest
|
|
restart: always
|
|
ports:
|
|
- "8080:8080"
|
|
environment:
|
|
- POSTGRES_USER=username
|
|
- POSTGRES_PASSWORD=password
|
|
- POSTGRES_DB=gatus
|
|
volumes:
|
|
- ./config:/config
|
|
networks:
|
|
- web
|
|
depends_on:
|
|
- postgres
|
|
|
|
networks:
|
|
web:
|