Sign inSign up

starbix/plextogether

By starbix

Updated almost 9 years ago

THIS IS THE OLD REPO, use starbix/synclounge instead

Image
4

100K+

starbix/plextogether repository overview

docker-plextogether

Dockerfile for PlexTogether 🐳

Docker Pulls

The following tags are available:

  • latest / alpine: webapp and server based on alpine
  • server: only server based on alpine
  • dev: development version based on alpine
docker run \
  --name=plextogether \
	-p 8088:8088 \
	-p 8089:8089 \
  -e DOMAIN=example.com \
  starbix/plextogether
  • nginx: latest + nginx reverse proxy
docker run \
  --name=plextogether_nginx \
	-p 80:80 \
  -e DOMAIN=example.com \
  starbix/plextogether:nginx
To run both the Plex Together webapp and the Plex Together server through a web server like nginx you will need to make sure you proxy websockets. Example nginx.conf:
server {
    listen 80;
	server_name example.com;
	root /location/of/plextogether/;
	location /ptweb {
		proxy_pass http://localhost:8088/ptweb;
	    proxy_http_version 1.1;
	    proxy_set_header Upgrade $http_upgrade;
	    proxy_set_header Connection "upgrade";
	}     	
	location /ptserver {
		proxy_pass http://localhost:8089/ptserver;
	    proxy_http_version 1.1;
	    proxy_set_header Upgrade $http_upgrade;
	    proxy_set_header Connection "upgrade";
	}     	
	location / {
	    proxy_http_version 1.1;
	    proxy_set_header Upgrade $http_upgrade;
	    proxy_set_header Connection "upgrade";
		proxy_pass http://localhost:8088/ptweb;
	}
}

Tag summary

Content type

Image

Digest

Size

91 MB

Last updated

almost 9 years ago

docker pull starbix/plextogether