From 98dd1aba31770708662b405478da4b336ee37871 Mon Sep 17 00:00:00 2001 From: Kris Lamoureux Date: Sun, 2 Mar 2025 15:33:46 -0500 Subject: [PATCH] Initial docker-compose.yml --- docker-compose.yml | 47 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..8e377cf --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,47 @@ +volumes: + gluetun: + qbittorrent: + +services: + gluetun: + image: "qmcgaw/gluetun:${GLUETUN_VERSION}" + container_name: gluetun + ports: + - "${QBIT_EXPOSE:-127.0.0.1:9080}:8080" + cap_add: + - NET_ADMIN + devices: + - /dev/net/tun:/dev/net/tun + volumes: + - gluetun:/gluetun + - ./gluetun:/tmp/gluetun + environment: + - VPN_SERVICE_PROVIDER=private internet access + - VPN_TYPE=openvpn + - PRIVATE_INTERNET_ACCESS_VPN_PORT_FORWARDING=${VPN_PORTFORWARD:-off} + - OPENVPN_USER=${VPN_USER} + - OPENVPN_PASSWORD=${VPN_PASSWORD} + - TZ=${TZ:-America/New_York} + labels: + - "traefik.http.routers.${ROUTER:-qbit}.rule=Host(`${HOSTNAME:-qbit.local.krislamo.org}`)" + - "traefik.http.routers.${ROUTER:-qbit}.entrypoints=web" + - "traefik.http.services.${ROUTER:-qbit}.loadbalancer.server.port=8080" + - "traefik.docker.network=traefik" + - "traefik.enable=true" + + qbittorrent: + image: linuxserver/qbittorrent:${QBIT_VERSION} + container_name: qbittorrent + network_mode: "service:gluetun" + mem_limit: ${MEM_LIMIT:-2g} + cpus: ${CPUS:-2} + depends_on: + - gluetun + environment: + - PUID=1000 + - PGID=1000 + - TZ=${TZ:-America/New_York} + - WEBUI_PORT=8080 + volumes: + - qbittorrent:/config + - ${DOWNLOADS}:/data