Update docs/tech_docs/vpn-torrent.md

This commit is contained in:
2024-01-12 19:08:55 +00:00
parent 070328cdbb
commit 5482ed3ed2

View File

@@ -25,6 +25,7 @@ docker-compose up -d
This command will start all services in the background. You can then access the web interfaces of qBittorrent, Jackett, Sonarr, and Prowlarr through the respective ports you've configured. This command will start all services in the background. You can then access the web interfaces of qBittorrent, Jackett, Sonarr, and Prowlarr through the respective ports you've configured.
```yaml
--- ---
version: "3" version: "3"
services: services:
@@ -61,7 +62,6 @@ services:
# Server list updater # Server list updater
# See https://github.com/qdm12/gluetun-wiki/blob/main/setup/servers.md#update-the-vpn-servers-list # See https://github.com/qdm12/gluetun-wiki/blob/main/setup/servers.md#update-the-vpn-servers-list
- UPDATER_PERIOD=24h - UPDATER_PERIOD=24h
qbittorrent: qbittorrent:
image: lscr.io/linuxserver/qbittorrent image: lscr.io/linuxserver/qbittorrent
container_name: qbittorrent container_name: qbittorrent
@@ -77,7 +77,6 @@ services:
depends_on: depends_on:
- gluetun - gluetun
restart: always restart: always
jackett: jackett:
image: lscr.io/linuxserver/jackett:latest image: lscr.io/linuxserver/jackett:latest
container_name: jackett container_name: jackett
@@ -92,7 +91,6 @@ services:
- /home/ubuntu/docker/arr-stack/jackett/data:/config - /home/ubuntu/docker/arr-stack/jackett/data:/config
- /home/ubuntu/docker/arr-stack/jackett/blackhole:/downloads - /home/ubuntu/docker/arr-stack/jackett/blackhole:/downloads
restart: unless-stopped restart: unless-stopped
sonarr: sonarr:
image: lscr.io/linuxserver/sonarr:latest image: lscr.io/linuxserver/sonarr:latest
container_name: sonarr container_name: sonarr
@@ -106,7 +104,6 @@ services:
- /home/ubuntu/docker/arr-stack/sonarr/tvseries:/tv #optional - /home/ubuntu/docker/arr-stack/sonarr/tvseries:/tv #optional
- /home/ubuntu/docker/arr-stack/sonarr/downloadclient-downloads:/downloads #optional - /home/ubuntu/docker/arr-stack/sonarr/downloadclient-downloads:/downloads #optional
restart: unless-stopped restart: unless-stopped
prowlarr: prowlarr:
image: lscr.io/linuxserver/prowlarr:latest image: lscr.io/linuxserver/prowlarr:latest
container_name: prowlarr container_name: prowlarr
@@ -118,3 +115,4 @@ services:
volumes: volumes:
- /home/ubuntu/docker/arr-stack/prowlarr/data:/config - /home/ubuntu/docker/arr-stack/prowlarr/data:/config
restart: unless-stopped restart: unless-stopped
```