728x90
반응형
Qbittorrent는 오픈 소스 BitTorrent 클라이언트입니다. BitTorrent 프로토콜을 사용하여 파일을 공유하고 다운로드하는 데 사용됩니다.
Qbittorrent는 Windows, macOS, Linux 및 FreeBSD에서 사용할 수 있으며, Python 및 Qt 라이브러리로 개발되었습니다.
Qbittorrent는 다양한 기능을 제공하며 사용하기 쉬운 인터페이스를 갖추고 있습니다.
일부 기능으로는 IP 필터링, DHT (분산 해시 테이블) 지원, UPnP / NAT-PMP 포트 포워딩, RSS 피드, 마그넷 링크, HTTP 다운로드, 대역폭 제한, 스케줄링 및 원격 제어 기능이 있습니다.
Qbittorrent는 무료이며, 사용하기 쉽고 안정적인 오픈 소스 BitTorrent 클라이언트로 인기가 있습니다.
docker-compose.yml 파일
docker-compose.yml
version: "3.3"
services:
qbittorrent:
image: lscr.io/linuxserver/qbittorrent
container_name: qbittorrent
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
- WEBUI_PORT=8080
volumes:
- ./path/appdata/config:/config
- ./path/downloads:/downloads
ports:
- 8080:8080
- 6881:6881
- 6881:6881/udp
restart: unless-stopped
docker-compose 시작
docker-compose up -d
master@master:~/docker2/docker/docker/qbittorrent$ docker-compose up -d
Creating network "qbittorrent_default" with the default driver
Pulling qbittorrent (lscr.io/linuxserver/qbittorrent:)...
latest: Pulling from linuxserver/qbittorrent
5c8ae9e0afc0: Pull complete
c61fe2056171: Pull complete
bd44bcbb7d71: Pull complete
071a82e54fc3: Pull complete
c747000183ca: Pull complete
ce449d436d1b: Pull complete
Digest: sha256:7ce46f2acdb83cce40ff6803ed22a3de9f5c616627fbfafdea8d90071f7ef953
Status: Downloaded newer image for lscr.io/linuxserver/qbittorrent:latest
Creating qbittorrent ... done
서비스 URL 접속
http://[서버 IP]:8080
#초기계정
ID : admin
비밀번호 : adminadmin
로그인 완료 후 메인 화면
docker-comopse 중지
docker-compose down
Transmission 구축
[Docker] transmission 구축하여 토렌트 파일을 자유롭게 받자 (tistory.com)
[Docker] 도커의 모든 것, 도커 추천 이미지!!! (tistory.com)
728x90
반응형
LIST
'Docker' 카테고리의 다른 글
[Docker] 도커의 모든 것, 도커 추천 이미지!!! (1) | 2023.03.15 |
---|---|
[Docker] Vaultwarden 으로 나의 패스워드를 관리하자 (1) | 2023.03.13 |
[Docker] Watchtower 구축 하기 (1) | 2023.03.11 |
[Docker] RabbitMQ (Advanced Message Queuing Protocol) 구축 하기 (1) | 2023.03.10 |
[Docker] Jellyfin 으로 나만의 영화관 구축하기 (1) | 2023.03.07 |