13 lines
368 B
YAML
13 lines
368 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
autorestic:
|
|
image: cupcakearmy/autorestic
|
|
container_name: autorestic
|
|
privileged: true
|
|
volumes:
|
|
- /home/geezo/docker_containers/autorestic:/data
|
|
- /home/geezo/docker_containers/immich:/immich
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
command: autorestic backup -va -c /data/config.yaml
|
|
restart: no |