diff --git a/.gitignore b/.gitignore index 14c0fd2..d9289af 100644 --- a/.gitignore +++ b/.gitignore @@ -25,6 +25,7 @@ streaming/jellyseerr/* streaming/sonarr/* streaming/radarr/* streaming/data/* +streaming/qbittorrent/* # Homepage homepage/files/assets/images/team/* diff --git a/streaming/compose.yaml b/streaming/compose.yaml index 1578a98..85625fb 100644 --- a/streaming/compose.yaml +++ b/streaming/compose.yaml @@ -15,6 +15,7 @@ services: - ./data/downloads:/downloads networks: - traefik-proxy + - streaming restart: unless-stopped jellyseerr: @@ -38,6 +39,7 @@ services: restart: unless-stopped networks: - traefik-proxy + - streaming sonarr: image: ghcr.io/hotio/sonarr:latest @@ -55,9 +57,31 @@ services: - ./data/downloads:/downloads networks: - traefik-proxy + - streaming restart: unless-stopped + depends_on: + - qbittorrent + qbittorrent: + image: ghcr.io/hotio/qbittorrent:latest + container_name: qbittorrent + environment: + - PUID=1000 + - PGID=1000 + - UMASK=002 + - TZ=Europe/Moscow + ports: + - "8181:8080" + - "6881:6881/udp" + volumes: + - ./qbittorrent:/config + - ./data:/data + restart: unless-stopped + networks: + - streaming networks: traefik-proxy: - external: true \ No newline at end of file + external: true + streaming: + driver: bridge \ No newline at end of file