Skip to main content

Uptime Kuma

name: uptimekuma
services:
    uptime-kuma:
        container_name: uptime-kuma
        image: louislam/uptime-kuma:1.23.16
        restart: always
        ports:
            - 3001:3001
        volumes:
            - data:/app/data
            - /var/run/docker.sock:/var/run/docker.sock #damit uptime auf die Docker Container zugreifen kann

volumes:
  data:

https://hub.docker.com/r/louislam/uptime-kuma/tags

https://github.com/louislam/uptime-kuma 

Um Windows-PCs zu Pingen, folgendes in CMD mit Adminrechten eingeben:

netsh advfirewall firewall add rule name="Allow ICMPv4-In" protocol=icmpv4:8,any dir=in action=allow

netsh advfirewall firewall add rule name="Allow ICMPv4-Out" protocol=icmpv4:8,any dir=out action=allow