Advertisement
D4rkSl4ve

duplicati compose

Apr 5th, 2019
520
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. services:
  2. duplicati:
  3. container_name: duplicati
  4. environment:
  5. - PGID=1000
  6. - PUID=1000
  7. - TZ=US/Eastern
  8. hostname: Rock64
  9. image: linuxserver/duplicati
  10. logging:
  11. driver: json-file
  12. options:
  13. max-file: 10
  14. max-size: 200k
  15. ports:
  16. - 8200:8200
  17. privileged: true
  18. restart: unless-stopped
  19. volumes:
  20. - /etc/localtime:/etc/localtime:ro
  21. - /home/dietpi/.docker/config/duplicati:/config
  22. - /home/dietpi/.docker/config/shared:/shared
  23. - /home/dietpi/.docker/config/backups:/backups
  24. - /mnt/Linux:/nas-linux
  25. - /usr/local:/usr/local
  26. - /etc/nginx:/nginx
  27. - /var/www:/www
  28. - /home/dietpi/.docker/config:/source
  29. - /var/run/docker.sock:/var/run/docker.sock
  30. - /usr/bin/docker:/usr/bin/docker
  31. version: "3.4"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement