13 lines
332 B
YAML
13 lines
332 B
YAML
version: '3.3'
|
|
|
|
services:
|
|
uptime-kuma:
|
|
image: louislam/uptime-kuma:1
|
|
container_name: uptimekuma
|
|
volumes:
|
|
- "${DOCKER_STORAGE_PATH}/uptimekuma:/app/data"
|
|
- "/var/run/docker.sock:/var/run/docker.sock"
|
|
ports:
|
|
- "${UPTIME_KUMA_EXTERNAL_PORT}:${UPTIME_KUMA_INTERNAL_PORT}"
|
|
restart: unless-stopped
|