Since EE now supports standard docker container, we should be able to install backup solution like duplicacy. I am new to the whole compose topic, so I was wondering if anybody would have some tips how to set this up with dockge.
Stephan
Since EE now supports standard docker container, we should be able to install backup solution like duplicacy. I am new to the whole compose topic, so I was wondering if anybody would have some tips how to set this up with dockge.
Stephan
So I have some success with this compose settings.
services:
duplicacy:
container_name: duplicacy
hostname: duplicacy
image: ghcr.io/hotio/duplicacy
ports:
- 3875:3875
environment:
- PUID=0
- PGID=0
volumes:
- /mnt/HD/docker/duplicacy/config:/config
- /mnt/HD/docker/duplicacy/cache:/cache
- /mnt/HD/docker/duplicacy/logs:/logs
- /mnt/HD/docker/duplicacy/data:/data
- /mnt/HD:/mnt
networks: {}
Any suggestions or recommendations would be appreciated.
Stephan