the cutest lightweight status page
docker compose (recommended)
Create a docker-compose.yaml file:
services:
statsys:
container_name: statsys
image: trafficlunar/statsys
restart: unless-stopped
volumes:
- ./data/:/app/data/
ports:
- 8888:8888Create a new directory called data and download the config.toml example and edit it:
mkdir data && cd data
wget https://raw.githubusercontent.com/trafficlunar/statsys/refs/heads/main/config.tomlWhen ready, run:
docker compose up -dNavigate to localhost:8888 to view your status page!
docker quick run
Create a new directory called data and download the config.toml example and edit it:
mkdir data && cd data
wget https://raw.githubusercontent.com/trafficlunar/statsys/refs/heads/main/config.tomlLaunch the container:
docker run -d \
--name statsys \
--restart unless-stopped \
-v "$(pwd)/data:/app/data" \
-p 8888:8888 \
trafficlunar/statsysNavigate to localhost:8888 to view your status page!
manual
TODO