docker-compose.yml 844 B

1234567891011121314151617181920212223242526272829303132333435
  1. version: "2"
  2. services:
  3. transmission:
  4. image: linuxserver/transmission
  5. container_name: transmission
  6. environment:
  7. # PUID and PGID should be set to the same numbers assigned
  8. # to the user id on the host running this docker
  9. # to find out the id, issue the command
  10. # id <laxaurus> for example
  11. # find what the host user id and group id
  12. - PUID=1000
  13. - PGID=1000
  14. - TZ=Europe/London
  15. - TRANSMISSION_WEB_HOME=/combustion-release/ #optional
  16. volumes:
  17. - ./config:/config
  18. # - ./downloads:/downloads
  19. # - ./watch:/watch
  20. - bt/downloads:/downloads
  21. - bt/watch:/watch
  22. ports:
  23. - 9091:9091
  24. - 51327:51413
  25. - 51327:51413/udp
  26. # restart: unless-stopped
  27. # restart: always
  28. restart: "no"
  29. networks:
  30. - webnet
  31. networks:
  32. webnet:
  33. external:
  34. name: ipvlan1