Compare commits

...

2 Commits

Author SHA1 Message Date
Your Name edf11b371c update README 2023-12-21 22:02:49 +08:00
Your Name a5ddf292de add restic 2023-12-21 21:56:44 +08:00
4 changed files with 34 additions and 1 deletions

View File

@ -22,10 +22,18 @@
- [Portainer](https://portainer.homeinfra.org)
- Gitea OIDC
- [Dockge](https://dockge.homeinfra.org)
### 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
- Loki
- Grafana
@ -35,6 +43,8 @@
### backup
- restic
- Backup to S3 (Backblaze)
- backup monitor
### Applications
@ -46,4 +56,7 @@
### Integrations
- [Github OAuth](https://github.com/settings/developers)
- healthchecks.io
- Backblaze S3 Bucket

View File

@ -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

View File

@ -0,0 +1 @@
curl -m 10 --retry 5 $HEALTH_CHECK_URL

0
docker/restic/ignore.txt Normal file
View File