20 lines
647 B
YAML
20 lines
647 B
YAML
name: archive-control-helium
|
|
|
|
services:
|
|
archive-client:
|
|
image: sodium/archive-clients:v0.1.19
|
|
user: "1000:1000"
|
|
restart: unless-stopped
|
|
network_mode: host
|
|
command: ["--config", "/etc/archive-control/client.toml"]
|
|
environment:
|
|
QB_USER: admin
|
|
volumes:
|
|
- ./client.toml:/etc/archive-control/client.toml:ro
|
|
- ./secrets:/run/secrets:ro
|
|
- ./state:/var/lib/archive-control
|
|
- ./backups:/var/backups/archive-control
|
|
# Do not split this into separate qB and Sync bind mounts: hardlinks
|
|
# require both trees to resolve within this one mount namespace.
|
|
- /media/Data2:/data/storage
|