-
-
Save ezy/ffe8da83b2038d23d7ab0d50136ee0da 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 | |
network_mode: host | |
volumes: | |
- ./plex_config:/config | |
- ./plex_transcode:/transcode | |
- /media/wdusb/movies:/movies | |
- /media/wdusb/tv:/tv | |
environment: | |
- TZ=Pacific/Auckland | |
- PUID=1000 | |
- PGID=1000 | |
- VERSION=docker | |
restart: unless-stopped | |
transmission: | |
image: linuxserver/transmission:latest | |
ports: | |
- 9091:9091 | |
volumes: | |
- ./config_transmission:/config | |
- .transmission_data:/downloads | |
- ./transmission_watch:/watch | |
environment: | |
- TZ=Pacific/Auckland |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment