23 lines
465 B
YAML
23 lines
465 B
YAML
---
|
|
version: "3.1"
|
|
services:
|
|
rtorrent:
|
|
image: binhex/arch-rtorrentvpn
|
|
container_name: rtorrent
|
|
volumes:
|
|
- "${DOCKER_STORAGE_PATH}/rtorrent/config:/config"
|
|
- ${STORAGE_PATH}/seed:/data
|
|
- /etc/localtime:/etc/localtime:ro
|
|
environment:
|
|
- PUID=${PUID}
|
|
- PGID=${PGID}
|
|
env_file:
|
|
- rtorrent.env
|
|
ports:
|
|
- "9080:9080"
|
|
- "9443:9443"
|
|
- "8118:8118"
|
|
- "6881:6881"
|
|
restart: unless-stopped
|
|
|