--- services: qbittorrent: image: {{ qbittorrent_image }} container_name: qbittorrent environment: - PUID={{ qbittorrent_puid }} - PGID={{ qbittorrent_pgid }} - TZ={{ timezone }} - WEBUI_PORT=8080 - TORRENTING_PORT=6881 volumes: - {{ qbittorrent_config_dir }}:/config - {{ qbittorrent_downloads_dir }}:/downloads ports: - {{ qbittorrent_port_web }}:8080 - {{ qbittorrent_port_tcp }}:6881 - {{ qbittorrent_port_udp }}:6881/udp restart: unless-stopped networks: - default networks: default: name: qbittorrent_network driver: bridge