Docker compose fixes

This commit is contained in:
Ben Sarmiento
2024-05-26 01:36:11 +02:00
parent bc85c21209
commit 6f4f3e7b82

View File

@@ -9,7 +9,8 @@ services:
- 9999:9999
volumes:
- ./config.yml:/app/config.yml
- zurgdata:/app/data
- ./data:/app/data
- ./dump:/app/dump
rclone:
image: rclone/rclone:latest
@@ -27,23 +28,3 @@ services:
devices:
- /dev/fuse
command: "mount zurg: /data --allow-non-empty --allow-other --uid=1000 --gid=1000 --dir-cache-time 10s --read-only"
rclonewd:
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 zurgwd: /data --allow-non-empty --allow-other --uid=1000 --gid=1000 --dir-cache-time 10s --read-only"
volumes:
zurgdata: