17 lines
425 B
YAML
17 lines
425 B
YAML
services:
|
|
rsnapshot:
|
|
container_name: rsnapshot
|
|
image: linuxserver/rsnapshot:1.4.5
|
|
restart: unless-stopped
|
|
environment:
|
|
- TZ=Europe/Amsterdam
|
|
volumes:
|
|
- /opt/rsnapshot:/config
|
|
- /mnt/yotta/xenon/rsnapshot:/host/scratch
|
|
- /root/.ssh:/root/.ssh:ro
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "ps aux | grep '[c]ron' || exit 1"]
|
|
interval: 60s
|
|
timeout: 5s
|
|
retries: 3
|