feat: mergerfs Bind-Mount statt Docker NFS-Volume
This commit is contained in:
parent
97b6db4d0c
commit
3a017e9f67
1 changed files with 6 additions and 19 deletions
25
compose.yaml
25
compose.yaml
|
|
@ -1,7 +1,3 @@
|
||||||
networks:
|
|
||||||
media_network:
|
|
||||||
name: media_network
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
sabnzbd:
|
sabnzbd:
|
||||||
image: lscr.io/linuxserver/sabnzbd:latest
|
image: lscr.io/linuxserver/sabnzbd:latest
|
||||||
|
|
@ -10,16 +6,14 @@ services:
|
||||||
- PUID=1000
|
- PUID=1000
|
||||||
- PGID=1000
|
- PGID=1000
|
||||||
- TZ=Europe/Berlin
|
- TZ=Europe/Berlin
|
||||||
networks:
|
|
||||||
- media_network
|
|
||||||
ports:
|
|
||||||
- 7777:7777
|
|
||||||
volumes:
|
volumes:
|
||||||
- /app-config/sabnzbd/config:/config
|
- /app-config/sabnzbd/config:/config
|
||||||
- usenet:/usenet
|
- usenet:/usenet
|
||||||
- tdarr:/tdarr
|
- tdarr:/tdarr
|
||||||
- chris:/chris
|
- chris:/chris
|
||||||
- data:/data
|
- /mnt/media:/data
|
||||||
|
ports:
|
||||||
|
- 7777:7777
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
|
|
@ -28,26 +22,19 @@ volumes:
|
||||||
driver: local
|
driver: local
|
||||||
driver_opts:
|
driver_opts:
|
||||||
device: :/usenet
|
device: :/usenet
|
||||||
o: addr=10.2.1.1,nolock,soft,rw
|
o: addr=10.2.1.1,nolock,hard,rw
|
||||||
type: nfs
|
type: nfs
|
||||||
tdarr:
|
tdarr:
|
||||||
name: tdarr
|
name: tdarr
|
||||||
driver: local
|
driver: local
|
||||||
driver_opts:
|
driver_opts:
|
||||||
device: :/tdarr
|
device: :/tdarr
|
||||||
o: addr=10.2.1.1,nolock,soft,rw
|
o: addr=10.2.1.1,nolock,hard,rw
|
||||||
type: nfs
|
type: nfs
|
||||||
chris:
|
chris:
|
||||||
name: chris_data
|
name: chris_data
|
||||||
driver: local
|
driver: local
|
||||||
driver_opts:
|
driver_opts:
|
||||||
device: :/chris
|
device: :/chris
|
||||||
o: addr=10.7.1.106,nolock,soft,rw
|
o: addr=10.7.1.106,nolock,hard,rw
|
||||||
type: nfs
|
|
||||||
data:
|
|
||||||
name: tdarr_data
|
|
||||||
driver: local
|
|
||||||
driver_opts:
|
|
||||||
device: :/volume1/nas
|
|
||||||
o: addr=192.168.2.100,nolock,soft,rw
|
|
||||||
type: nfs
|
type: nfs
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue