diff --git a/homelab/seedbox/config/qbittorrent/.env b/homelab/seedbox/config/qbittorrent/.env deleted file mode 100644 index f3455345..00000000 --- a/homelab/seedbox/config/qbittorrent/.env +++ /dev/null @@ -1,5 +0,0 @@ -DOCKER_DATA=/home/joey/data/qbittorrent -PUID=1000 -PGID=1000 -TZ=America/Los_Angeles -WEBUI_PORT=8080 \ No newline at end of file diff --git a/homelab/seedbox/config/qbittorrent/README.md b/homelab/seedbox/config/qbittorrent/README.md deleted file mode 100644 index 64971e18..00000000 --- a/homelab/seedbox/config/qbittorrent/README.md +++ /dev/null @@ -1,4 +0,0 @@ -## Create a Torrent File -On Windows, use qBitTorrent's [Torrent Creator](https://www.ghacks.net/2019/09/20/how-to-create-a-private-torrent-using-qbittorrent/) -On Linux (CLI), use [`ctorrent`](http://manpages.ubuntu.com/manpages/bionic/man1/ctorrent.1.html). (Like: `ctorrent -t -s output_file.torrent /path/to/source/dir`) - diff --git a/homelab/seedbox/config/qbittorrent/docker-compose-test.yml b/homelab/seedbox/config/qbittorrent/docker-compose-test.yml deleted file mode 100644 index 3e25eb9d..00000000 --- a/homelab/seedbox/config/qbittorrent/docker-compose-test.yml +++ /dev/null @@ -1,19 +0,0 @@ -version: '3' -services: - qbittorrent-pub: - image: linuxserver/qbittorrent - container_name: qbittorrent_pub - networks: - - qbittorrent - restart: "no" - env_file: - - .env - ports: - - 42300:6881 - - 42310:8080 - volumes: - - $DOCKER_DATA/pub:/config - - /mnt/torrenting/PUB/0:/downloads - -networks: - qbittorrent: \ No newline at end of file diff --git a/homelab/seedbox/config/qbittorrent/docker-compose.yml b/homelab/seedbox/config/qbittorrent/docker-compose.yml deleted file mode 100644 index 1b2bd9fe..00000000 --- a/homelab/seedbox/config/qbittorrent/docker-compose.yml +++ /dev/null @@ -1,74 +0,0 @@ -version: '3' -services: - qbittorrent-ggn: - image: linuxserver/qbittorrent - container_name: qbittorrent_ggn - networks: - - qbittorrent - restart: "no" - env_file: - - .env - ports: - - 42000:6881 - volumes: - - $DOCKER_DATA/ggn:/config - - /mnt/torrenting/GGN/0:/downloads - - qbittorrent-mam: - image: linuxserver/qbittorrent - container_name: qbittorrent_mam - networks: - - qbittorrent - restart: "no" - env_file: - - .env - ports: - - 42100:6881 - volumes: - - $DOCKER_DATA/mam:/config - - /mnt/torrenting/MAM/0:/downloads - - qbittorrent-emp: - image: linuxserver/qbittorrent - container_name: qbittorrent_emp - networks: - - qbittorrent - restart: "no" - env_file: - - .env - ports: - - 42200:6881 - volumes: - - $DOCKER_DATA/emp:/config - - /mnt/torrenting/EMP/0:/downloads - - qbittorrent-pub: - image: linuxserver/qbittorrent - container_name: qbittorrent_pub - networks: - - qbittorrent - restart: "no" - env_file: - - .env - ports: - - 42300:6881 - volumes: - - $DOCKER_DATA/pub:/config - - /mnt/torrenting/PUB/0:/downloads - - qbittorrent-red: - image: linuxserver/qbittorrent - container_name: qbittorrent_red - networks: - - qbittorrent - restart: "no" - env_file: - - .env - ports: - - 4s2400:6881 - volumes: - - $DOCKER_DATA/red:/config - - /mnt/torrenting/RED/0:/downloads - -networks: - qbittorrent: \ No newline at end of file