Files
zurg/docker-compose.yml
Ben Adrian Sarmiento e4650a0f0f Refactor delete
2024-06-25 20:22:34 +02:00

33 lines
747 B
YAML

version: '3.8'
services:
zurg:
# image: ghcr.io/debridmediamanager/zurg-testing:latest
build: .
restart: unless-stopped
ports:
- 9999:9999
volumes:
- ./config.yml:/app/config.yml
- ./data:/app/data
- ./dump:/app/dump
- ./plex_update.sh:/app/plex_update.sh
rclone:
image: rclone/rclone:latest
restart: unless-stopped
environment:
TZ: Europe/Berlin
PUID: 1000
PGID: 1000
volumes:
- /mnt/zurg:/data:rshared
- ./rclone.conf:/config/rclone/rclone.conf
cap_add:
- SYS_ADMIN
security_opt:
- apparmor:unconfined
devices:
- /dev/fuse
command: "mount zurg: /data --allow-non-empty --allow-other --vfs-read-chunk-size 1M"