You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
557 B
25 lines
557 B
version: "3"
|
|
|
|
services:
|
|
transmission:
|
|
image: ${TR_IMG:-linuxserver/transmission}:${TR_TAG:-latest}
|
|
container_name: ${TR_CONTAINER_NAME:-transmission}
|
|
restart: ${TR_RESTART:-unless-stopped}
|
|
volumes:
|
|
- ${LOCAL_STACK_DIR}/config:/config
|
|
- ${LOCAL_STACK_DIR}/downloads:/downloads
|
|
- ${LOCAL_STACK_DIR}/watch:/watch
|
|
ports:
|
|
- 51413:51413
|
|
- 51413:51413/udp
|
|
expose:
|
|
- 9091
|
|
env_file:
|
|
- transmission.env
|
|
environment:
|
|
TZ: ${TZ}
|
|
|
|
networks:
|
|
default:
|
|
external:
|
|
name: ${NETWORK}
|
|
|