Created
October 18, 2018 01:32
-
-
Save alanleite/5bf6d91cbabc0780adaac6fdaba4dba1 to your computer and use it in GitHub Desktop.
Revisions
-
Alan Leite created this gist
Oct 18, 2018 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,42 @@ version: '3' services: plex: image: linuxserver/plex:150 container_name: plex restart: unless-stopped network_mode: "host" environment: - "VERSION=latest" - "PGID=1000" - "PUID=1000" - "TZ=America/Sao_Paulo" ports: - "32400:32400" - "32400:32400/udp" - "32469:32469" - "32469:32469/udp" - "5353:5353/udp" - "1900:1900/udp" volumes: - "/data/plex/database:/config" - "/data/plex/transcode:/transcode" - "/data/media:/data" transmission: image: linuxserver/transmission:146 container_name: transmission restart: unless-stopped network_mode: "host" environment: - "PGID=1000" - "PUID=1000" - "TZ=America/Sao_Paulo" ports: - "9091:9091" - "51413:51413" - "51413:51413/udp" volumes: - "/data/transmission/data:/config" - "/data/transmission/watch:/watch" - "/data/media:/downloads"