Last active
September 27, 2019 03:15
-
-
Save shinhyo/932cbdd6f4badaf61da37d0a387de8c6 to your computer and use it in GitHub Desktop.
docker-compse plex, transmission
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "2" | |
services: | |
plex: | |
image: linuxserver/plex:latest | |
ports: | |
- 32400:32400 | |
- 32400:32400/udp | |
- 32469:32469 | |
- 32469:32469/udp | |
- 5353:5353/udp | |
- 1900:1900/udp | |
volumes: | |
- /home/shinhyo/docker-compose/plex_transmission/config_plex:/config | |
- /home/shinhyo/docker-compose/plex_transmission/data:/data | |
- /home/shinhyo/docker-compose/plex_transmission/transcode:/transcode | |
environment: | |
- TZ=Asia/Seoul | |
transmission: | |
image: linuxserver/transmission:latest | |
ports: | |
- 9091:9091 | |
volumes: | |
- /home/shinhyo/docker-compose/plex_transmission/config_transmission:/config | |
- /home/shinhyo/docker-compose/plex_transmission/data:/downloads | |
- /home/shinhyo/docker-compose/plex_transmission/watch:/watch | |
environment: | |
- TZ=Asia/Seoul |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment