diff --git a/server/config/qbittorrent/.env b/server/config/qbittorrent/.env new file mode 100644 index 0000000..51686e2 --- /dev/null +++ b/server/config/qbittorrent/.env @@ -0,0 +1,6 @@ +DOCKER_DATA=/home/joey/data/qbittorrent +TORRENT_DATA=/mnt/nas/torrenting +PUID=1000 +PGID=1000 +TZ=America/Los_Angeles +WEBUI_PORT=8080 \ No newline at end of file diff --git a/server/config/qbittorrent/docker-compose.yml b/server/config/qbittorrent/docker-compose.yml new file mode 100644 index 0000000..bd0adab --- /dev/null +++ b/server/config/qbittorrent/docker-compose.yml @@ -0,0 +1,19 @@ +version: "3" +services: + qbittorrent: + image: linuxserver/qbittorrent + container_name: qbittorrent + networks: + - web + restart: "no" + env_file: + - .env + ports: + - 50000:6881 + labels: + - traefik.http.routers.qbt.rule=Host(`qbt.jafner.net`) + - traefik.http.routers.qbt.tls.certresolver=lets-encrypt + +networks: + web: + external: true \ No newline at end of file