healthchecks

https://www.notion.so/healthchecks-21e1a3b433fe807eb6f9e38046ceda75

Running in Docker

1
2
3
4
5
6
7
8
9
10
11
12
docker run -d \
  --name=hc \
  -p 8010:8000 \
  --restart unless-stopped \
  -e DB=sqlite \
  -e DB_NAME=/data/hc.sqlite \
  -e DEBUG=False \
  -e SITE_ROOT=http://10.224.59.43:8010 \
  -v ~/healthchecks-data:/data \
healthchecks

docker exec -it hc /opt/healthchecks/manage.py createsuperuser
This post is licensed under CC BY 4.0 by the author.