Duplicati

Before there was this great server I build together with my son, I had a Synology to keep valuable data. And to make it even safer, I ran backups to the Synology of my long time best friend. Now I liked the packages that were on Synology, and for some time was playing with the idea to run a Synology in a docker container, but that never materialized. So I came across Duplicati. It has encrypted backup, can use a range of methods to connect nd much more.
In the next blog I will explain the solution to enable the Synology of my best friend to make his backups on our server.
version: "3.7" services: duplicati_server: networks: - duplicati_net image: duplicati/duplicati container_name: ${CONTAINER_NAME} volumes: - duplicati:/data - /mnt/secdrive:/secdrive ports: - 8200:8200 volumes: duplicati: external: name: vol_Duplicati networks: duplicati_net: external: name: ${CONTAINER_NETWORK}
Hits: 1