Files
zurg/docker-compose.yml
2024-05-26 01:36:11 +02:00

31 lines
700 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
rclone:
image: rclone/rclone:latest
restart: unless-stopped
environment:
TZ: Europe/Berlin
PUID: 1000
PGID: 1000
volumes:
- ./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 --uid=1000 --gid=1000 --dir-cache-time 10s --read-only"