Guest User

pdz

a guest
Feb 18th, 2024
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.92 KB | None | 0 0
  1. GNU nano 6.2 docker-compose.yml
  2. version: "3.8"
  3.  
  4. services:
  5. pd_zurg:
  6. container_name: pd_zurg
  7. image: iampuid0/pd_zurg:latest
  8. network_mode: host
  9. ## Optionally, specify a specific version of pd_zurg
  10. # image: iampuid0/pd_zurg:2.0.0
  11. stdin_open: true # docker run -i
  12. tty: true # docker run -t
  13. volumes:
  14. ## Location of configuration files. If a Zurg config.yml and/or Zurg app is placed here, it will be used to override the default configuration and/or app used at startup.
  15. - /docker/pd_zurg/config:/config
  16. ## Location for logs
  17. - /docker/pd_zurg/log:/log
  18. ## Location for rclone cache if enabled
  19. - /docker/pd_zurg/cache:/cache
  20. ## Location for Zurg RealDebrid active configuration
  21. - /docker/pd_zurg/RD:/zurg/RD
  22. ## Location for Zurg AllDebrid active configuration -- when supported by Zurg
  23. - /docker/pd_zurg/AD:/zurg/AD
  24. ## Location for rclone mount to host
  25. - /docker/pd_zurg/mnt:/data:shared
  26. environment:
  27. - TZ=
  28. ## Zurg Required Settings
  29. - ZURG_ENABLED=y
  30. - RD_API_KEY=MYPRIVATEKEY
  31. ## Zurg Optional Settings
  32. # - ZURG_LOG_LEVEL=DEBUG
  33. # - ZURG_VERSION=v0.9.2-hotfix.4
  34. - ZURG_UPDATE=true
  35. - PLEX_REFRESH=true
  36. - PLEX_MOUNT_DIR=/docker/pd_zurg/mnt/rd
  37. - ZURG_USER=myusername
  38. - ZURG_PASS=mypassword
  39. - ZURG_PORT=9999
  40. ## Rclone Required Settings
  41. - RCLONE_MOUNT_NAME=rd
  42. ## Rclone Optional Settings - See rclone docs for full list
  43. # - NFS_ENABLED=true
  44. # - NFS_PORT=8000
  45. # - RCLONE_LOG_LEVEL=DEBUG
  46. # - RCLONE_CACHE_DIR=/cache
  47. # - RCLONE_DIR_CACHE_TIME=10s
  48. # - RCLONE_VFS_CACHE_MODE=full
  49. # - RCLONE_VFS_CACHE_MAX_SIZE=100G
  50. # - RCLONE_ATTR_TIMEOUT=8700h
  51. # - RCLONE_BUFFER_SIZE=32M
  52. # - RCLONE_VFS_CACHE_MAX_AGE=4h
  53. # - RCLONE_VFS_READ_CHUNK_SIZE=32M
  54. # - RCLONE_VFS_READ_CHUNK_SIZE_LIMIT=1G
  55. # - RCLONE_TRANSFERS=8
  56. ## Plex Debrid Required Settings
  57. - PD_ENABLED=true
  58. ## To utilize plex_debrid with Plex, the following environment variables are required
  59. - PLEX_USER=username
  60. - PLEX_TOKEN=MYPRIVATETOKEN
  61. - PLEX_ADDRESS=http://localhost:32400
  62. ## To utilize plex_debrid with Jellyfin, the following environment variables are required - Note that plex_debrid will require addtional setup befor use with Jellyfin
  63. # - JF_ADDRESS
  64. # - JF_API_KEY
  65. ## Plex Debrid Optional Settings
  66. - PD_UPDATE=true
  67. # - SHOW_MENU=false
  68. - SEERR_API_KEY=MYPRIVATEKEY
  69. - SEERR_ADDRESS=http://localhost:5055
  70. ## Special Features
  71. # - AUTO_UPDATE_INTERVAL=12
  72. # - DUPLICATE_CLEANUP=true
Advertisement
Add Comment
Please, Sign In to add comment