forked from pablokbs/peladonerd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
37 lines (35 loc) · 821 Bytes
/
docker-compose.yaml
File metadata and controls
37 lines (35 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
version: '3'
services:
plex:
image: jaymoulin/plex:1.18.2
expose:
- 32400
- 33400
network_mode: "host"
volumes:
- /mnt/gdrive/movies:/movies
depends_on:
- rclone-mount
rclone-mount:
image: pablokbs/rclone-mount:armhf
restart: unless-stopped
ports:
- '80:80'
cap_add:
- SYS_ADMIN
security_opt:
- 'apparmor:unconfined'
volumes:
- '/var/run/docker.sock:/tmp/docker.sock:ro'
- '/home/pi/.config/rclone:/config'
- '/mnt/gdrive:/mnt/mediaefs:shared'
logging:
options:
max-size: 1g
container_name: rclone-mount
devices:
- /dev/fuse
environment:
- 'RemotePath=gdrive:'
- 'MountCommands=--allow-other --allow-non-empty --buffer-size 256M'
- 'ConfigName=rclone.conf'