21 lines
550 B
YAML
21 lines
550 B
YAML
services:
|
|
uptime-kuma:
|
|
image: louislam/uptime-kuma:2
|
|
container_name: uptime-kuma
|
|
restart: unless-stopped
|
|
volumes:
|
|
- /opt/uptime-kuma:/app/data
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
ports:
|
|
- "3001:3001"
|
|
auto-kuma:
|
|
image: ghcr.io/bigboot/autokuma:uptime-kuma-v1-sha-cbd2537
|
|
container_name: auto-kuma
|
|
environment:
|
|
- AUTOKUMA__KUMA__URL=http://host:3001
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
restart: unless-stopped
|
|
extra_hosts:
|
|
- "host:${HOST_IP}"
|