1
0
Fork 0

Initial import

This commit is contained in:
Daniele Tricoli 2022-08-31 23:06:08 +02:00
commit 7f96b5b774
2 changed files with 27 additions and 0 deletions

1
Dockerfile Normal file
View File

@ -0,0 +1 @@
FROM linuxserver/healthchecks:2.3.20220826

26
README.md Normal file
View File

@ -0,0 +1,26 @@
# pod-healthchecks
## Deploy
### Dokku
```
dokku apps:create healthchecks
dokku config:set --no-restart healthchecks TZ=Europe/Rome
dokku config:set --no-restart healthchecks DOKKU_LETSENCRYPT_EMAIL=example@example.org
dokku config:set --no-restart healthchecks PUID=1000
dokku config:set --no-restart healthchecks PGID=1000
dokku config:set --no-restart healthchecks SITE_ROOT=https://healthchecks.example.org:8000
dokku config:set --no-restart healthchecks SITE_NAME=Example Healthchecks
dokku config:set --no-restart healthchecks DEFAULT_FROM_EMAIL=no-reply@example.org
dokku config:set --no-restart healthchecks SUPERUSER_EMAIL=admin@example.org
dokku config:set --no-restart healthchecks SUPERUSER_PASSWORD=thisisasecret
dokku storage:mount healthchecks /var/lib/dokku/data/storage/healthchecks:/config
git push dokku main:main
dokku letsencrypt:enable healthchecks
dokku letsencrypt:cron-job --add healthchecks
```