INNOG 8 - Introduction to Containers
Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

Deploy Uptime Kuma

Module 3 - Deploy Uptime-Kuma

Deploy Uptime Kuma. Project github page with details to docker container here.

Create a new directory in home your directory called “uptime-kuma”

mkdir uptime-kuma

And use those in the docker-compose.yml


Setup docker-compose.yml

services:
  uptime-kuma:
    image: louislam/uptime-kuma:latest
    container_name: uptime-kuma
    volumes:
      - uptime-kuma:/app/data
    ports:
      - 3001:3001
    restart: always


volumes: 
    uptime-kuma: 

Next, bring up the container
docker-compose up -d

Verify container is up

docker container list 

Visit http://a<$attendee-id>.labs.innog.net:3001 e.g for user 01 it would be:

http://a01.labs.innog.net:3001