[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:
|
||||
image: lscr.io/linuxserver/sabnzbd:latest
|
||||
container_name: sabnzbd
|
||||
network_mode: service:wireguard
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
|
|
@ -170,8 +171,8 @@ services:
|
|||
ports:
|
||||
- 8080:8080
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- media_network
|
||||
# networks:
|
||||
# - media_network
|
||||
|
||||
lidarr:
|
||||
image: lscr.io/linuxserver/lidarr:latest
|
||||
|
|
@ -217,5 +218,26 @@ services:
|
|||
- /app-config/audiobookshelf/metadata:/metadata
|
||||
- /app-config/audiobookshelf/config:/config
|
||||
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:
|
||||
- media_network
|
||||
Loading…
Add table
Add a link
Reference in a new issue