chore: formating

This commit is contained in:
sujiba 2024-05-18 22:38:51 +02:00
parent 1bda89ab17
commit 3c8fa73ce6

View file

@ -1,21 +1,9 @@
--- ---
services: services:
### VPN - Mullvad ### VPN - Mullvad
gluetun: gluetun:
image: qmcgaw/gluetun image: qmcgaw/gluetun
container_name: gluetun container_name: gluetun
cap_add:
- NET_ADMIN
devices:
- /dev/net/tun:/dev/net/tun
ports:
- 8888:8888/tcp # HTTP proxy
- 8388:8388/tcp # Shadowsocks
- 8388:8388/udp # Shadowsocks
- 8080:8080/tcp # SABnzbd
volumes:
- ./volumes/gluetun:/gluetun
environment: environment:
- PUID=1010 - PUID=1010
- PGID=1010 - PGID=1010
@ -36,6 +24,17 @@ services:
- TZ=Europe/Berlin - TZ=Europe/Berlin
# https://github.com/qdm12/gluetun-wiki/blob/main/setup/servers.md#update-the-vpn-servers-list # https://github.com/qdm12/gluetun-wiki/blob/main/setup/servers.md#update-the-vpn-servers-list
- UPDATER_PERIOD=24h - UPDATER_PERIOD=24h
ports:
- 8888:8888/tcp # HTTP proxy
- 8388:8388/tcp # Shadowsocks
- 8388:8388/udp # Shadowsocks
- 8080:8080/tcp # SABnzbd
volumes:
- ./volumes/gluetun:/gluetun
cap_add:
- NET_ADMIN
devices:
- /dev/net/tun:/dev/net/tun
restart: unless-stopped restart: unless-stopped
### Downloader - Usenet ### Downloader - Usenet
@ -51,11 +50,11 @@ services:
- ./volumes/sabnzbd:/config - ./volumes/sabnzbd:/config
- ./volumes/downloads/complete:/downloads - ./volumes/downloads/complete:/downloads
- ./volumes/downloads/incomplete:/incomplete-downloads - ./volumes/downloads/incomplete:/incomplete-downloads
restart: unless-stopped
network_mode: "service:gluetun" network_mode: "service:gluetun"
depends_on: depends_on:
gluetun: gluetun:
condition: service_healthy condition: service_healthy
restart: unless-stopped
### Media Manager - Filebot ### Media Manager - Filebot
filebot: filebot:
@ -86,8 +85,8 @@ services:
- ./volumes/downloads/complete:/storage:rw - ./volumes/downloads/complete:/storage:rw
- ./volumes/downloads/complete:/watch:rw - ./volumes/downloads/complete:/watch:rw
- ./volumes/downloads/renamed:/output:rw - ./volumes/downloads/renamed:/output:rw
restart: unless-stopped
network_mode: "service:gluetun" network_mode: "service:gluetun"
depends_on: depends_on:
gluetun: gluetun:
condition: service_healthy condition: service_healthy
restart: unless-stopped