Last active
August 3, 2024 14:01
-
-
Save dnburgess/9b95c72292ec8b2badb92a667702c70f to your computer and use it in GitHub Desktop.
DB Tech / WaitWhat Seedbox Stack
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
version: '2.4' | |
services: | |
gluetun: | |
image: qmcgaw/gluetun | |
container_name: gluetun | |
environment: | |
- PUID=998 | |
- PGID=100 | |
- VPNSP=private internet access | |
- REGION=US Houston | |
- OPENVPN_USER=USERNAME #Change to YOUR Username | |
- OPENVPN_PASSWORD=PASSWORD #Change to YOUR Password | |
volumes: | |
- /srv/dev-disk-by-uuid-0d4a201c-b292-412d-ade6-cc5561e54f1f/Configs/Gluetun/Config:/gluetun | |
ports: | |
- 9080:9080 #QBitTorrent Web-UI | |
- 6881:6881 #QBitTorrent | |
- 6881:6881/udp #QBitTorrent | |
- 9117:9117 #Jackett | |
- 7878:7878 #Radarr | |
- 8989:8989 #Sonarr | |
cap_add: | |
- NET_ADMIN | |
restart: unless-stopped | |
qbittorrent: | |
image: ghcr.io/linuxserver/qbittorrent | |
container_name: qbittorrent | |
network_mode: "service:gluetun" | |
environment: | |
- PUID=998 | |
- PGID=100 | |
- TZ=America/Denver | |
- UMASK=022 | |
- WEBUI_PORT=9080 | |
volumes: | |
- /srv/dev-disk-by-uuid-0d4a201c-b292-412d-ade6-cc5561e54f1f/Configs/qbittorrent/config:/config | |
- /srv/dev-disk-by-uuid-0d4a201c-b292-412d-ade6-cc5561e54f1f/Torrents:/downloads | |
depends_on: | |
- gluetun | |
restart: unless-stopped | |
jackett: | |
image: ghcr.io/linuxserver/jackett | |
container_name: jackett | |
network_mode: "service:gluetun" | |
environment: | |
- PUID=998 | |
- PGID=100 | |
- TZ=America/Denver | |
- AUTO_UPDATE=true #optional | |
volumes: | |
- /srv/dev-disk-by-uuid-0d4a201c-b292-412d-ade6-cc5561e54f1f/Configs/Jackett/Config:/config | |
- /srv/dev-disk-by-uuid-0d4a201c-b292-412d-ade6-cc5561e54f1f/Torrents:/downloads | |
depends_on: | |
- gluetun | |
restart: unless-stopped | |
radarr: | |
image: ghcr.io/linuxserver/radarr | |
container_name: radarr | |
network_mode: "service:gluetun" | |
environment: | |
- PUID=998 | |
- PGID=100 | |
- TZ=America/Denver | |
volumes: | |
- /srv/dev-disk-by-uuid-0d4a201c-b292-412d-ade6-cc5561e54f1f/Configs/Radarr/config:/config | |
- /srv/dev-disk-by-uuid-0d4a201c-b292-412d-ade6-cc5561e54f1f/Movies:/movies | |
- /srv/dev-disk-by-uuid-0d4a201c-b292-412d-ade6-cc5561e54f1f/Torrents:/downloads | |
depends_on: | |
- gluetun | |
restart: unless-stopped | |
sonarr: | |
image: ghcr.io/linuxserver/sonarr | |
container_name: sonarr | |
network_mode: "service:gluetun" | |
environment: | |
- PUID=998 | |
- PGID=100 | |
- TZ=America/Denver | |
volumes: | |
- /srv/dev-disk-by-uuid-0d4a201c-b292-412d-ade6-cc5561e54f1f/Configs/Sonarr/config:/config | |
- /srv/dev-disk-by-uuid-0d4a201c-b292-412d-ade6-cc5561e54f1f/TV:/tv | |
- /srv/dev-disk-by-uuid-0d4a201c-b292-412d-ade6-cc5561e54f1f/Torrents:/downloads | |
depends_on: | |
- gluetun | |
restart: unless-stopped |
Here it's some exemple of what's append when i try to adding.
Hi just to give you a some advice whatever your using this stack for. Cloudflare does have a terms of use policy and these containers my violate that terms of use so i would use it with caution.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The only problem with this programming is that it can't detect my system jackett.
They don't want to communicate with each other.
Here it's some exemple of what's append when i try to adding.
After investigating i decided to connect all of local to CloudFlare ZeroTrust and it solved the prob and all are now connected to SSL ! :D