mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-29 08:16:12 +08:00
28 lines
691 B
YAML
28 lines
691 B
YAML
|
version: "3"
|
||
|
services:
|
||
|
qbittorrent:
|
||
|
container_name: ${CONTAINER_NAME}
|
||
|
restart: unless-stopped
|
||
|
networks:
|
||
|
- 1panel-network
|
||
|
environment:
|
||
|
- UID=1000
|
||
|
- GID=1000
|
||
|
- PEER_PORT=40150
|
||
|
- WEB_PORT=40155
|
||
|
ports:
|
||
|
- "${PEER_PORT_VALUE}:40150"
|
||
|
- "${PEER_PORT_VALUE}:40150/udp"
|
||
|
- "${PANEL_APP_PORT_HTTP}:40155"
|
||
|
volumes:
|
||
|
- "./data/.config:/data/.config"
|
||
|
- "./data/.local:/data/.local"
|
||
|
- "${CACHE_PATH}:/data/.cache"
|
||
|
- "${DOWNLOAD_PATH}:/data/downloads"
|
||
|
image: "jarylc/qbittorrent:4.3.5_1.2.14"
|
||
|
labels:
|
||
|
createdBy: "Apps"
|
||
|
|
||
|
networks:
|
||
|
1panel-network:
|
||
|
external: true
|