| 12345678910111213141516171819202122232425262728293031 |
- services:
- transmission:
- image: linuxserver/transmission
- container_name: transmission
- environment:
- # PUID and PGID should be set to the same numbers assigned
- # to the user id on the host running this docker
- # to find out the id, issue the command
- # id <laxaurus> for example
- # find what the host user id and group id
- - PUID=1000
- - PGID=1000
- - TZ=Asia/Hong_Kong
- - TRANSMISSION_WEB_HOME=/config/combustion/combustion-release/ #optional
- volumes:
- - ./config:/config
- - ${DATA_VOLUME_ROOT}/crm-media-002/movies3/downloads:/downloads
- - ${DATA_VOLUME_ROOT}/crm-media-002/movies3/watch:/watch
- ports:
- - 9081:9091
- - 51327:51413
- - 51327:51413/udp
- # restart: unless-stopped
- # restart: always
- restart: "no"
- networks:
- - webnet
- networks:
- webnet:
|