Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AlphaFactory/125f24714d73d47b098d5d16cccee8e3 to your computer and use it in GitHub Desktop.
Save AlphaFactory/125f24714d73d47b098d5d16cccee8e3 to your computer and use it in GitHub Desktop.
docker create \
--name=plex1 \
--net=bridge \
-e VERSION=latest \
-e PUID=1035 -e PGID=100 \
-e TZ=Asia/Seoul \
-v /volume1/plex1/config:/config \
-v /volume1/plex1/data:/data \
-v /volume1/plex1/transcode:/transcode \
-p 32400:32400 \
-p 32400:32400/udp \
linuxserver/plex
docker create \
--name=plex2 \
--net=bridge \
-e VERSION=latest \
-e PUID=1035 -e PGID=100 \
-e TZ=Asia/Seoul \
-v /volume1/plex2/config:/config \
-v /volume1/plex2/data:/data \
-v /volume1/plex2/transcode:/transcode \
-p 32401:32400 \
-p 32401:32400/udp \
linuxserver/plex
docker run plex1
docker run plex2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment