Files
file-backups/docker-compose.yml
2024-02-04 11:05:45 -06:00

26 lines
477 B
YAML

version: '3.9'
services:
autorestic:
image: cupcakearmy/autorestic:latest
env_file:
- .env
volumes:
- .autorestic.yaml:/.autorestic.yaml
- ../:/source:ro
- backups:/backups
- /var/run/docker.sock:/var/run/docker.sock
command: [
"autorestic",
"backup",
"-va",
"-c", "/.autorestic.yaml"
]
volumes:
backups:
driver: local
driver_opts:
type: none
o: bind
device: /mnt/backups