mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-10 21:16:55 +08:00
33 lines
1006 B
YAML
33 lines
1006 B
YAML
|
version: "3.8"
|
||
|
|
||
|
networks:
|
||
|
1panel-network:
|
||
|
external: true
|
||
|
|
||
|
services:
|
||
|
qbittorrent:
|
||
|
image: linuxserver/qbittorrent:4.6.5
|
||
|
container_name: ${CONTAINER_NAME}
|
||
|
labels:
|
||
|
createdBy: "Apps"
|
||
|
restart: always
|
||
|
network_mode: ${NETWORK_MODE}
|
||
|
ports:
|
||
|
- ${PANEL_APP_PORT_HTTP}
|
||
|
- ${PANEL_APP_PORT_TORRENTING}
|
||
|
- ${PANEL_APP_PORT_TORRENTING}/udp
|
||
|
env_file:
|
||
|
- /etc/1panel/envs/global.env
|
||
|
volumes:
|
||
|
- ${QBITTORRENT_ROOT_PATH}/config:/config
|
||
|
- ${QBITTORRENT_ROOT_PATH}/downloads:/downloads
|
||
|
- ${CUSTOM_MOUNT_DIRECTORY_1:-./default_mount_1}:${CUSTOM_MOUNT_DIRECTORY_1:-/default_mount_1}
|
||
|
- ${CUSTOM_MOUNT_DIRECTORY_2:-./default_mount_2}:${CUSTOM_MOUNT_DIRECTORY_2:-/default_mount_2}
|
||
|
- ${CUSTOM_MOUNT_DIRECTORY_3:-./default_mount_3}:${CUSTOM_MOUNT_DIRECTORY_3:-/default_mount_3}
|
||
|
environment:
|
||
|
- PUID=0
|
||
|
- PGID=0
|
||
|
- UMASK=022
|
||
|
- WEBUI_PORT=${PANEL_APP_PORT_HTTP}
|
||
|
- TORRENTING_PORT=${PANEL_APP_PORT_TORRENTING}
|