vm-ztv/torrserver/dev/docker-compose.yaml
2025-10-31 08:59:15 +04:00

20 lines
553 B
YAML

version: '3.3'
services:
torrserver:
image: ghcr.io/yourok/torrserver:matrix.135
container_name: torrserv-dev
network_mode: host # to allow DLNA feature
environment:
- TS_PORT=5665
- TS_DONTKILL=1
- TS_HTTPAUTH=0
- TS_CONF_PATH=/opt/ts/config
- TS_TORR_DIR=/opt/ts/torrents
volumes:
- './CACHE:/opt/ts/torrents'
- './CONFIG:/opt/ts/config'
ports:
- '5665:5665'
restart: unless-stopped