docker-stacks/gatus/docker-compose.yml

15 lines
320 B
YAML
Raw Normal View History

version: "3.7"
2022-02-01 23:43:28 +00:00
services:
gatus:
image: twinproduction/gatus:latest
2022-03-14 00:15:31 +00:00
container_name: gatus
2022-02-01 23:43:28 +00:00
ports:
- "127.0.0.1:8080:8080"
2022-02-02 00:01:13 +00:00
network_mode: "host"
2022-02-01 23:43:28 +00:00
volumes:
- ./config.yaml:/config/config.yaml:ro
- ./data:/data/
env_file: .env
2022-02-03 14:46:23 +00:00
restart: unless-stopped
user: '${HOST_USER:-0}'