.examples
docker-compose
docker-compose-grafana-prometheus
docker-compose-mattermost
docker-compose-multiple-config-files
docker-compose-postgres-storage
config
docker-compose.yml
docker-compose-sqlite-storage
docker-minimal
kubernetes
.github
alerting
client
config
controller
core
docs
jsonpath
metrics
pattern
security
storage
test
util
watchdog
web
.dockerignore
.gitattributes
.gitignore
Dockerfile
LICENSE
Makefile
README.md
config.yaml
go.mod
go.sum
main.go
ref: https://github.com/TwiN/gatus/issues/151#issuecomment-912932934 update all exmaple in docker-compose file. Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
30 lines
494 B
YAML
30 lines
494 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"
|
|
volumes:
|
|
- ./config:/config
|
|
networks:
|
|
- web
|
|
depends_on:
|
|
- postgres
|
|
|
|
networks:
|
|
web:
|