You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
438 B
YAML
20 lines
438 B
YAML
# docker-compose.yml
|
|
# Docker Hub: https://hub.docker.com/r/louislam/uptime-kuma
|
|
# The WebUI can be found at http://<HOST_IP>:<WEBUI_PORT>
|
|
|
|
networks:
|
|
<NETWORK_NAME>:
|
|
external: true
|
|
|
|
services:
|
|
uptime-kuma:
|
|
container_name: uptime-kuma
|
|
image: louislam/uptime-kuma:<VERSION_TAG>
|
|
networks:
|
|
- <NETWORK_NAME>
|
|
ports:
|
|
- "3001:3001" # WebUI Port
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./data:/app/data
|