Compare commits
2 Commits
7da6ea3e39
...
edf11b371c
Author | SHA1 | Date |
---|---|---|
|
edf11b371c | |
|
a5ddf292de |
15
README.md
15
README.md
|
@ -22,10 +22,18 @@
|
||||||
|
|
||||||
- [Portainer](https://portainer.homeinfra.org)
|
- [Portainer](https://portainer.homeinfra.org)
|
||||||
- Gitea OIDC
|
- Gitea OIDC
|
||||||
|
- [Dockge](https://dockge.homeinfra.org)
|
||||||
|
|
||||||
### Observability
|
### Observability
|
||||||
|
|
||||||
- [Uptime](https://uptime.homeinfra.org)
|
- [Uptime](https://uptime.homeinfra.org) [Status Page](https://uptime.homeinfra.org/status/main)
|
||||||
|
- All exposed apps
|
||||||
|
- Docker containers status
|
||||||
|
- DNS
|
||||||
|
- HTTPS Cert Expiration
|
||||||
|
- Backup
|
||||||
|
- Cron Jobs
|
||||||
|
|
||||||
- Prometheus
|
- Prometheus
|
||||||
- Loki
|
- Loki
|
||||||
- Grafana
|
- Grafana
|
||||||
|
@ -35,6 +43,8 @@
|
||||||
### backup
|
### backup
|
||||||
|
|
||||||
- restic
|
- restic
|
||||||
|
- Backup to S3 (Backblaze)
|
||||||
|
- backup monitor
|
||||||
|
|
||||||
### Applications
|
### Applications
|
||||||
|
|
||||||
|
@ -46,4 +56,7 @@
|
||||||
### Integrations
|
### Integrations
|
||||||
|
|
||||||
- [Github OAuth](https://github.com/settings/developers)
|
- [Github OAuth](https://github.com/settings/developers)
|
||||||
|
- healthchecks.io
|
||||||
|
- Backblaze S3 Bucket
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
version: "2"
|
||||||
|
|
||||||
|
services:
|
||||||
|
|
||||||
|
backup:
|
||||||
|
image: ghcr.io/lobaro/restic-backup-docker:master
|
||||||
|
#build: .
|
||||||
|
hostname: restic
|
||||||
|
volumes:
|
||||||
|
- /root:/data/root
|
||||||
|
|
||||||
|
- /tmp/restic.cache:/root/.cache/restic
|
||||||
|
- ./data/logs:/var/log/
|
||||||
|
- ./hooks:/hooks
|
||||||
|
- ./ignore.txt:/restic_ignore.txt
|
||||||
|
env_file:
|
||||||
|
- .env
|
||||||
|
#entrypoint: tail -f /dev/null
|
||||||
|
restart: unless-stopped
|
|
@ -0,0 +1 @@
|
||||||
|
curl -m 10 --retry 5 $HEALTH_CHECK_URL
|
Loading…
Reference in New Issue