18 lines
376 B
YAML
18 lines
376 B
YAML
|
---
|
||
|
services:
|
||
|
rtorrent:
|
||
|
image: binhex/arch-rtorrentvpn
|
||
|
container_name: rtorrent
|
||
|
environment:
|
||
|
- VPN_ENABLED=no
|
||
|
volumes:
|
||
|
- "${DOCKER_STORAGE_PATH}/rtorrent/config:/config"
|
||
|
- ${STORAGE_PATH}/seed:/data
|
||
|
- /etc/localtime:/etc/localtime:ro
|
||
|
ports:
|
||
|
- "9080:9080"
|
||
|
- "9443:9443"
|
||
|
- "8118:8118"
|
||
|
restart: unless-stopped
|
||
|
|