mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-11 19:26:56 +08:00
8d7a080f32
* chore(deps): update linuxserver/qbittorrent docker tag to v4.6.4 * Update app version [skip ci] --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-action update-app-version <githubaction@githubaction.com>
27 lines
695 B
YAML
27 lines
695 B
YAML
version: '3'
|
|
services:
|
|
qbittorrent:
|
|
image: linuxserver/qbittorrent:4.6.4
|
|
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 |