fix gluetun-transmission-chromium path typos
parent
f6a0ec3673
commit
f2969ca522
|
@ -1,2 +0,0 @@
|
||||||
WIREGUARD_PRIVATE_KEY=private_key_goes_here_see_https://github.com/qdm12/gluetun-wiki/blob/main/setup/providers/mullvad.md
|
|
||||||
WIREGUARD_ADDRESSES=addresses_go_here
|
|
|
@ -1,67 +0,0 @@
|
||||||
version: "2.1"
|
|
||||||
|
|
||||||
services:
|
|
||||||
gluetun:
|
|
||||||
image: qmcgaw/gluetun
|
|
||||||
container_name: gluetun
|
|
||||||
cap_add:
|
|
||||||
- NET_ADMIN
|
|
||||||
ports:
|
|
||||||
- 40605:6881 # qbittorrent
|
|
||||||
- 40605:6881/udp # qbittorrent
|
|
||||||
- 3000:3000 # chromium
|
|
||||||
environment:
|
|
||||||
- VPN_SERVICE_PROVIDER=mullvad
|
|
||||||
- VPN_TYPE=wireguard
|
|
||||||
- SERVER_CITIES=Toronto
|
|
||||||
env_file:
|
|
||||||
- .env
|
|
||||||
restart: unless-stopped
|
|
||||||
networks:
|
|
||||||
- proxy
|
|
||||||
|
|
||||||
qbittorrent:
|
|
||||||
image: lscr.io/linuxserver/qbittorrent:4.6.0-r0-ls294
|
|
||||||
container_name: qbittorrent
|
|
||||||
environment:
|
|
||||||
- PUID=1001
|
|
||||||
- PGID=1001
|
|
||||||
- TZ=America/New_York
|
|
||||||
- WEBUI_PORT=8080
|
|
||||||
volumes:
|
|
||||||
- /home/meftimes/docker/gluetun-qbittorrent-chromium/qbittorrent-config:/config
|
|
||||||
- /media/qbittorrent/downloads:/downloads
|
|
||||||
restart: unless-stopped
|
|
||||||
network_mode: service:gluetun
|
|
||||||
depends_on:
|
|
||||||
gluetun:
|
|
||||||
condition: service_healthy
|
|
||||||
labels:
|
|
||||||
- "traefik.enable=true"
|
|
||||||
- "traefik.http.routers.qbittorrent-websecure.entrypoints=websecure"
|
|
||||||
- "traefik.http.routers.qbittorrent-websecure.rule=Host(`qbittorrent.meftimes.com`)"
|
|
||||||
- "traefik.http.routers.qbittorrent-websecure.service=qbittorrent-websecure"
|
|
||||||
# - "traefik.http.routers.qbittorrent.middlewares=authelia@docker" # not working currently
|
|
||||||
- "traefik.http.services.qbittorrent-websecure.loadbalancer.server.port=8080"
|
|
||||||
|
|
||||||
chromium:
|
|
||||||
image: lscr.io/linuxserver/chromium:latest
|
|
||||||
container_name: chromium
|
|
||||||
security_opt:
|
|
||||||
- seccomp:unconfined #optional
|
|
||||||
environment:
|
|
||||||
- PUID=1001
|
|
||||||
- PGID=1001
|
|
||||||
- TZ=America/New_York
|
|
||||||
volumes:
|
|
||||||
- /home/meftimes/docker/gluetun-qbittorrent-chromium/chromium-config:/config
|
|
||||||
network_mode: service:gluetun
|
|
||||||
depends_on:
|
|
||||||
gluetun:
|
|
||||||
condition: service_healthy
|
|
||||||
shm_size: "1gb"
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
networks:
|
|
||||||
proxy:
|
|
||||||
external: true
|
|
|
@ -29,9 +29,9 @@ services:
|
||||||
- TZ=America/New_York
|
- TZ=America/New_York
|
||||||
- PEERPORT=40605
|
- PEERPORT=40605
|
||||||
volumes:
|
volumes:
|
||||||
- /home/meftimes/docker/gluetun-qbittorrent-chromium/transmission-config:/config
|
- /home/meftimes/docker/gluetun-transmission-chromium/transmission-config:/config
|
||||||
- /home/meftimes/docker/transmission/downloads:/downloads
|
- /home/meftimes/docker/transmission/downloads:/downloads
|
||||||
- /home/meftimes/docker/gluetun-qbittorrent-chromium/watch:/watch
|
- /home/meftimes/docker/gluetun-transmission-chromium/watch:/watch
|
||||||
# ports:
|
# ports:
|
||||||
# - 9091:9091
|
# - 9091:9091
|
||||||
# - 40605:40605
|
# - 40605:40605
|
||||||
|
|
Loading…
Reference in New Issue