mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2025-06-27 16:57:05 +00:00
19 lines
368 B
YAML
19 lines
368 B
YAML
version: '3.3'
|
|
#https://github.com/louislam/uptime-kuma
|
|
services:
|
|
uptime-kuma:
|
|
image: louislam/uptime-kuma:latest
|
|
container_name: uptime-kuma
|
|
volumes:
|
|
- ./uptime-kuma-data:/app/data
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
ports:
|
|
- 3001:3001
|
|
restart: always
|
|
networks:
|
|
- proxy
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|