gatus/.examples/docker-compose-postgres-storage/docker-compose.yml

30 lines
494 B
YAML
Raw Normal View History

2021-09-11 01:21:43 +02:00
version: "3.9"
services:
postgres:
image: postgres
volumes:
- ./data/db:/var/lib/postgresql/data
2021-09-11 23:48:50 +02:00
ports:
- "5432:5432"
2021-09-11 01:21:43 +02:00
environment:
- POSTGRES_DB=gatus
- POSTGRES_USER=username
- POSTGRES_PASSWORD=password
networks:
- web
gatus:
image: twinproduction/gatus:latest
restart: always
ports:
2021-09-11 02:03:51 +02:00
- "8080:8080"
2021-09-11 01:21:43 +02:00
volumes:
- ./config:/config
2021-09-11 01:21:43 +02:00
networks:
- web
depends_on:
- postgres
networks:
web: