15 lines
320 B
YAML
15 lines
320 B
YAML
version: "3.7"
|
|
services:
|
|
gatus:
|
|
image: twinproduction/gatus:latest
|
|
container_name: gatus
|
|
ports:
|
|
- "127.0.0.1:8080:8080"
|
|
network_mode: "host"
|
|
volumes:
|
|
- ./config.yaml:/config/config.yaml:ro
|
|
- ./data:/data/
|
|
env_file: .env
|
|
restart: unless-stopped
|
|
user: '${HOST_USER:-0}'
|