Advertisement
Fadinglionhart

Untitled

Oct 23rd, 2024
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. version: "3.8"
  2. services:
  3. zurg:
  4. image: ghcr.io/debridmediamanager/zurg-testing:latest
  5. restart: unless-stopped
  6. ports:
  7. - 9999:9999
  8. volumes:
  9. - ./plex_update.sh:/app/plex_update.sh
  10. - ./config.yml:/app/config.yml
  11. - zurgdata:/app/data
  12. rclone:
  13. image: rclone/rclone:latest
  14. restart: unless-stopped
  15. environment:
  16. TZ: America/Los_Angeles
  17. PUID: 1000
  18. PGID: 1000
  19. volumes:
  20. - /mnt/zurg:/data:rshared # CHANGE /mnt/zurg WITH YOUR PREFERRED MOUNT PATH
  21. - ./rclone.conf:/config/rclone/rclone.conf
  22. cap_add:
  23. - SYS_ADMIN
  24. security_opt:
  25. - apparmor:unconfined
  26. devices:
  27. - /dev/fuse:/dev/fuse:rwm
  28. depends_on:
  29. - zurg
  30. command: "mount zurg: /data --allow-other --allow-non-empty --dir-cache-time 10s --vfs-cache-max-age 10m
  31. --vfs-cache-max-size 10G --vfs-cache-mode full"
  32.  
  33. rdtclient:
  34. depends_on:
  35. rclone:
  36. condition: service_started
  37. container_name: rdtclient
  38. volumes:
  39. - /mnt/realdebrid/:/data/downloads
  40. - /home/docker_appdata/rdtclient/:/data/db
  41. - /mnt/zurg/__all__:/mnt/zurg/__all__
  42. image: rogerfar/rdtclient
  43. restart: always
  44. logging:
  45. driver: json-file
  46. options:
  47. max-size: 10m
  48. ports:
  49. - 6500:6500
  50.  
  51. volumes:
  52. zurgdata: null
  53. networks: {}
  54.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement