2024-04-02 16:11:18 +08:00
|
|
|
version: '3'
|
|
|
|
services:
|
|
|
|
qbittorrent:
|
2024-04-02 16:18:31 +08:00
|
|
|
image: linuxserver/qbittorrent:4.6.3
|
2024-04-02 16:11:18 +08:00
|
|
|
container_name: ${CONTAINER_NAME}
|
|
|
|
restart: always
|
2024-04-02 16:18:31 +08:00
|
|
|
networks:
|
|
|
|
- 1panel-network
|
2024-04-02 16:11:18 +08:00
|
|
|
environment:
|
|
|
|
- PUID=1000
|
|
|
|
- PGID=1000
|
|
|
|
- UMASK_SET=022
|
2024-04-02 16:18:31 +08:00
|
|
|
- TZ=${TIME_ZONE}
|
2024-04-02 16:11:18 +08:00
|
|
|
- WEBUI_PORT=${PANEL_APP_PORT_HTTP}
|
|
|
|
- TORRENTING_PORT=${PANEL_TORRENTING_PORT}
|
|
|
|
ports:
|
|
|
|
- ${PANEL_TORRENTING_PORT}:${PANEL_TORRENTING_PORT}
|
|
|
|
- ${PANEL_TORRENTING_PORT}:${PANEL_TORRENTING_PORT}/udp
|
|
|
|
- ${PANEL_APP_PORT_HTTP}:${PANEL_APP_PORT_HTTP}
|
|
|
|
volumes:
|
2024-04-02 16:18:31 +08:00
|
|
|
- ./config:/config
|
|
|
|
- ./data:/downloads
|
2024-04-02 16:11:18 +08:00
|
|
|
labels:
|
|
|
|
createdBy: "Apps"
|
2024-04-02 16:18:31 +08:00
|
|
|
networks:
|
|
|
|
1panel-network:
|
|
|
|
external: true
|