https://github.com/nicolassutter/vps_backups
https://github.com/nicolassutter/vps_backups
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nicolassutter/vps_backups
- Owner: nicolassutter
- Created: 2025-07-10T13:37:26.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-10T17:44:24.000Z (about 1 year ago)
- Last Synced: 2025-07-10T20:43:05.604Z (about 1 year ago)
- Language: Dockerfile
- Size: 2.93 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# VPS backups
Simple Dockerfile that creates an image that has everything I need to backup things on my VPS.
```
volumes:
vw-data:
services:
vaultwarden:
image: 'vaultwarden/server:latest'
container_name: vaultwarden
restart: unless-stopped
volumes:
- 'vw-data:/data/'
# this is a dumb container, we need to set a cron job inside the container to use it
my_backup_solution:
container_name: my_backup_solution
image: ghcr.io/nicolassutter/vps_backups:latest
environment:
- MINIO_ENDPOINT=
- MINIO_ACCESS_KEY=
- MINIO_SECRET_KEY=
- MINIO_BUCKET_NAME=
volumes:
- vw-data:/vw-data:ro
```