| 12345678910111213141516171819202122232425262728293031323334 |
- version: "2"
- services:
- transmission:
- image: linuxserver/transmission
- container_name: transmission-gm
- 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
- # - ./downloads:/downloads
- # - ./watch:/watch
- - ${DATA_VOLUME_ROOT}/downloads:/downloads
- - ${DATA_VOLUME_ROOT}/watch:/watch
- ports:
- - 9084:9091
- - 50324:51413
- - 50324:51413/udp
- # restart: unless-stopped
- # restart: always
- restart: "no"
- networks:
- - webnet
- networks:
- webnet:
|