mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-08 00:51:55 +00:00
19 lines
448 B
Markdown
19 lines
448 B
Markdown
# Deploy transmission in docker
|
|
|
|
## Deploy
|
|
|
|
```bash
|
|
docker run \
|
|
--name transmission \
|
|
-d \
|
|
--restart always \
|
|
--publish 9091:9091 \
|
|
--publish 51413:51413 \
|
|
--publish 51413:51413/udp \
|
|
--mount type=bind,src=/etc/localtime,dst=/etc/localtime,readonly \
|
|
--mount type=bind,src=/data/transmission/Downloads/,dst=/root/Downloads/ \
|
|
--mount type=bind,src=/data/transmission/config/,dst=/var/lib/transmission/config/ \
|
|
newnius/transmission
|
|
```
|
|
|