Skip to content

Instantly share code, notes, and snippets.

@ezy
Forked from shinhyo/docker-compose.yml
Last active September 27, 2019 04:07
Show Gist options
  • Save ezy/ffe8da83b2038d23d7ab0d50136ee0da to your computer and use it in GitHub Desktop.
Save ezy/ffe8da83b2038d23d7ab0d50136ee0da to your computer and use it in GitHub Desktop.
docker-compse plex, transmission
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