Skip to content

trafficlunar/statsys

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

statsys

thumbnail

the cutest lightweight status page

install

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:8888

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.toml

When ready, run:

docker compose up -d

Navigate 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.toml

Launch the container:

docker run -d \
  --name statsys \
  --restart unless-stopped \
  -v "$(pwd)/data:/app/data" \
  -p 8888:8888 \
  trafficlunar/statsys

Navigate to localhost:8888 to view your status page!

manual

TODO

About

WIP - the cutest lightweight status page

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors