Qbittorrent
Que hace este servicio
Este servicio es una aplicacion para descargar y transmitir Torrents
docker-compose.yaml
services:
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
container_name: qbittorrent
#ports:
# - 8005:8082 #este es el puerto para la pagina http
# - 6881:6881
# - 6881:6881/udp
networks:
- sky_net
environment:
- PUID=${APPUSER_PUID}
- PGID=${APPUSER_PGID}
- TZ=America/Mexico_City
- WEBUI_PORT=8082
volumes:
- ${PATH_TO_APPDATA}/qbittorrent/config:/config
- ${PATH_TO_DOWNLOADS}:/downloads
networks:
sky_net:
driver: bridge
external: true
name: sky_net
.env
PATH_TO_APPDATA=/dockerData/appdata
PATH_TO_DOWNLOADS=
APPUSER_PGID=1000
APPUSER_PUID=1000