[Komodo] admin: Write Compose File: update compose.yaml
This commit is contained in:
parent
cf0fc31616
commit
b22574d622
1 changed files with 24 additions and 2 deletions
26
compose.yaml
26
compose.yaml
|
|
@ -160,6 +160,7 @@ services:
|
||||||
sabnzbd:
|
sabnzbd:
|
||||||
image: lscr.io/linuxserver/sabnzbd:latest
|
image: lscr.io/linuxserver/sabnzbd:latest
|
||||||
container_name: sabnzbd
|
container_name: sabnzbd
|
||||||
|
network_mode: service:wireguard
|
||||||
environment:
|
environment:
|
||||||
- PUID=1000
|
- PUID=1000
|
||||||
- PGID=1000
|
- PGID=1000
|
||||||
|
|
@ -170,8 +171,8 @@ services:
|
||||||
ports:
|
ports:
|
||||||
- 8080:8080
|
- 8080:8080
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
networks:
|
# networks:
|
||||||
- media_network
|
# - media_network
|
||||||
|
|
||||||
lidarr:
|
lidarr:
|
||||||
image: lscr.io/linuxserver/lidarr:latest
|
image: lscr.io/linuxserver/lidarr:latest
|
||||||
|
|
@ -217,5 +218,26 @@ services:
|
||||||
- /app-config/audiobookshelf/metadata:/metadata
|
- /app-config/audiobookshelf/metadata:/metadata
|
||||||
- /app-config/audiobookshelf/config:/config
|
- /app-config/audiobookshelf/config:/config
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
networks:
|
||||||
|
- media_network
|
||||||
|
|
||||||
|
wireguard:
|
||||||
|
image: lscr.io/linuxserver/wireguard:latest
|
||||||
|
container_name: wireguard
|
||||||
|
cap_add:
|
||||||
|
- NET_ADMIN
|
||||||
|
- SYS_MODULE #optional
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Europe/Berlin
|
||||||
|
volumes:
|
||||||
|
- /app-config/wireguard/:/config
|
||||||
|
- /lib/modules:/lib/modules #optional
|
||||||
|
ports:
|
||||||
|
- 51820:51820/udp
|
||||||
|
sysctls:
|
||||||
|
- net.ipv4.conf.all.src_valid_mark=1
|
||||||
|
restart: unless-stopped
|
||||||
networks:
|
networks:
|
||||||
- media_network
|
- media_network
|
||||||
Loading…
Add table
Add a link
Reference in a new issue