mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2024-11-28 13:08:53 +03:00
8af4d3099c
Some checks failed
Build project and release / Run Release Please action (push) Has been cancelled
Build project and release / Build VueTorrent (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
Build project and release / Push to nightly branch (push) Has been cancelled
Build project and release / Upload release to GitHub (push) Has been cancelled
Build project and release / Push to latest branch (push) Has been cancelled
28 lines
736 B
YAML
28 lines
736 B
YAML
services:
|
|
qbit:
|
|
image: linuxserver/qbittorrent:latest
|
|
container_name: qbit
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/London
|
|
- UMASK_SET=022
|
|
- WEBUI_PORT=8080
|
|
volumes:
|
|
- ./docker/config:/config
|
|
- ./docker/downloads:/downloads
|
|
- ./vuetorrent:/vuetorrent
|
|
ports:
|
|
- '8080:8080'
|
|
restart: unless-stopped
|
|
# Backend is optional, see the repo for more information
|
|
# backend:
|
|
# image: ghcr.io/vuetorrent/vuetorrent-backend:latest
|
|
# container_name: vuetorrent-backend
|
|
# restart: unless-stopped
|
|
# environment:
|
|
# - "QBIT_BASE=http://internal.host.docker:8080/"
|
|
# ports:
|
|
# - '8081:3000'
|
|
# volumes:
|
|
# - ./docker/backend:/app/data
|