version: "3.9" services: qbittorrent: image: lscr.io/linuxserver/qbittorrent:latest container_name: qbittorrent profiles: - qbittorrent environment: - PUID=1000 - PGID=1000 - TZ=Europe/London - WEBUI_PORT=8080 volumes: - qbittorrent-conf:/config - qbittorrent-downloads:/downloads #ports: # - 8080:8080 # - 6881:6881 # - 6881:6881/udp restart: unless-stopped networks: - app-network jellyfin: image: lscr.io/linuxserver/jellyfin:latest container_name: jellyfin profiles: - jellyfin environment: - PUID=1000 - PGID=1000 - TZ=Europe/London - JELLYFIN_PublishedServerUrl=192.168.0.5 #optional volumes: - jellyfin-config:/config - jellyfin-tvseries:/data/tvshows - jellyfin-movies:/data/movies - jellyfin:/var/www/html #ports: # - 8096:8096 # - 8920:8920 #optional # - 7359:7359/udp #optional # - 1900:1900/udp #optional restart: unless-stopped networks: - app-network security_opt: - no-new-privileges:true