Skip to content

Latest commit

 

History

History
33 lines (28 loc) · 624 Bytes

readme.md

File metadata and controls

33 lines (28 loc) · 624 Bytes

Installation

git clone https://github.com/SalupovTeam/statuspage
cd statuspage
docker build -t statuspage . 
docker run -d \
  -p 1487:1487 \
  --name statuspage \
  -v statuspage_data:/app/instance \
  statuspage
sleep 1
docker logs statuspage

Make sure to replace logo in templates/logo.png with your own :)

!!! Status WONT update by itself, you need to make another script for auto updates

Updating

git fetch
git pull
docker stop statuspage
docker rm statuspage
docker build -t statuspage . 
docker run -d \
  -p 1487:1487 \
  --name statuspage \
  -v statuspage_data:/app/instance \
  statuspage