Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- version: "3.8"
- services:
- zurg:
- image: ghcr.io/debridmediamanager/zurg-testing:latest
- restart: unless-stopped
- ports:
- - 9999:9999
- volumes:
- - ./plex_update.sh:/app/plex_update.sh
- - ./config.yml:/app/config.yml
- - zurgdata:/app/data
- rclone:
- image: rclone/rclone:latest
- restart: unless-stopped
- environment:
- TZ: America/Los_Angeles
- PUID: 1000
- PGID: 1000
- volumes:
- - /mnt/zurg:/data:rshared # CHANGE /mnt/zurg WITH YOUR PREFERRED MOUNT PATH
- - ./rclone.conf:/config/rclone/rclone.conf
- cap_add:
- - SYS_ADMIN
- security_opt:
- - apparmor:unconfined
- devices:
- - /dev/fuse:/dev/fuse:rwm
- depends_on:
- - zurg
- command: "mount zurg: /data --allow-other --allow-non-empty --dir-cache-time 10s --vfs-cache-max-age 10m
- --vfs-cache-max-size 10G --vfs-cache-mode full"
- rdtclient:
- depends_on:
- rclone:
- condition: service_started
- container_name: rdtclient
- volumes:
- - /mnt/realdebrid/:/data/downloads
- - /home/docker_appdata/rdtclient/:/data/db
- - /mnt/zurg/__all__:/mnt/zurg/__all__
- image: rogerfar/rdtclient
- restart: always
- logging:
- driver: json-file
- options:
- max-size: 10m
- ports:
- - 6500:6500
- volumes:
- zurgdata: null
- networks: {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement