Simple uptime-kuma docker-compose setup: Self-hosted UptimeRobot alternative
In order to install Uptime-Kuma, first create a directory for the service to reside in. In this example, we’ll use /opt/uptimekuma
Note that at the moment UptimeKuma only supports one user, so if you need multiple users, you need to create multiple instances of Uptime-Kuma. Fortunately, this is extremely easy using docker-compose.
Now we will create docker-compose.yml
services:
kuma:
image: 'louislam/uptime-kuma:1'
ports:
- '17958:3001'
volumes:
- './uptimekuma_data:/app/data'
This will listen on port 17958
. You can choose any port you want here, just make sure to choose different ports when running different instances of uptime-kuma.
Now you can use our script from Create a systemd service for your docker-compose project in 10 seconds to automatically start Uptime-Kuma on boot (and start it immediately):
curl -fsSL https://techoverflow.net/scripts/create-docker-compose-service.sh | sudo bash /dev/stdin
Now access https://<IP of controller>:17958
(or your custom HTTP port) to get started with the Uptime-Kuma setup.