mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
* feat: add qBittorrent BitTorrent client template Add qBittorrent template with Traefik integration, SSL support, and proper port configuration for BitTorrent functionality. * feat: add qBittorrent template Add qBittorrent BitTorrent client template with Traefik integration, SSL support, and comprehensive setup documentation including default login credentials and first-time configuration instructions. * fix: apply Dokploy template best practices Update qBittorrent template to follow official guidelines: - Remove dokploy-network references - Fix port mapping format - Ensure service name consistency Resolves maintainer feedback on template standards. * fix: remove manual Traefik config, use Dokploy auto-SSL
30 lines
720 B
YAML
30 lines
720 B
YAML
# docker-compose.yml
|
|
#
|
|
# IMPORTANT: First-time setup information
|
|
# - Default username: admin
|
|
# - Password: Check container logs for temporary password on first startup
|
|
# - Access via your configured domain (HTTPS) after deployment
|
|
# - Change the default password immediately after first login
|
|
#
|
|
services:
|
|
qbittorrent:
|
|
image: lscr.io/linuxserver/qbittorrent:latest
|
|
restart: unless-stopped
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- WEBUI_PORT=8080
|
|
- TORRENTING_PORT=6881
|
|
volumes:
|
|
- qb_config:/config
|
|
- qb_downloads:/downloads
|
|
ports:
|
|
- 8080
|
|
- 6881:6881
|
|
- 6881:6881/udp
|
|
labels:
|
|
- "traefik.enable=true"
|
|
volumes:
|
|
qb_config:
|
|
qb_downloads:
|