mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-03 18:36:22 +00:00
16 lines
385 B
YAML
16 lines
385 B
YAML
# Gatus
|
|
services:
|
|
gatus:
|
|
image: ${GATUS_IMAGE:-twinproduction/gatus:latest}
|
|
restart: ${GATUS_RESTART:-unless-stopped}
|
|
volumes:
|
|
- ${CONFIG_PATH:-/data/config.yml}:/config/config.yaml
|
|
- ${VOL_PATH:-/data}/gatus:/config/data
|
|
environment:
|
|
- TZ=${TZ:-America/Vancouver}
|
|
ports:
|
|
- "${GATUS_PORT:-8080}:8080"
|
|
|
|
networks:
|
|
proxy:
|
|
external: true |