mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-13 18:51:58 +08:00
27 lines
695 B
YAML
27 lines
695 B
YAML
version: '3'
|
|
services:
|
|
qbittorrent:
|
|
image: linuxserver/qbittorrent:4.6.3
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- UMASK_SET=022
|
|
- TZ=${TIME_ZONE}
|
|
- 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:
|
|
- ./config:/config
|
|
- ./data:/downloads
|
|
labels:
|
|
createdBy: "Apps"
|
|
networks:
|
|
1panel-network:
|
|
external: true |