diff --git a/qbittorrent/docker-compose.yml b/qbittorrent/docker-compose.yml new file mode 100644 index 0000000..c54877f --- /dev/null +++ b/qbittorrent/docker-compose.yml @@ -0,0 +1,27 @@ +--- +version: "3" + +services: + qbittorrent: + image: linuxserver/qbittorrent:4.5.0 + container_name: qbittorrent + # networks: + # macvlan1910: + # ipv4_address: 192.168.10.3 + environment: + - PUID=1000 + - PGID=1000 + - TZ=America/Detroit + - WEBUI_PORT=8000 + volumes: + - /config/qbtorrent:/config + # - /storage:/downloads + ports: + - 8000:8080 + - 6881:6881 + - 6881:6881/udp + restart: always +#networks: +# macvlan1910: +# external: +# name: macvlan1910