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:
|
2022-03-20 05:04:13 +01:00
|
|
|
- ./config:/config
|
2021-09-11 01:21:43 +02:00
|
|
|
networks:
|
|
|
|
- web
|
|
|
|
depends_on:
|
|
|
|
- postgres
|
|
|
|
|
|
|
|
networks:
|
2022-03-20 05:04:13 +01:00
|
|
|
web:
|