appstore-1panel/apps/qbittorrent/4.6.4/docker-compose.yml
renovate[bot] 8d7a080f32
chore(deps): update linuxserver/qbittorrent docker tag to v4.6.4 (#1193)
* 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>
2024-04-02 16:59:54 +08:00

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