THIS IS THE OLD REPO, use starbix/synclounge instead
100K+
Dockerfile for PlexTogether 🐳
The following tags are available:
docker run \
--name=plextogether \
-p 8088:8088 \
-p 8089:8089 \
-e DOMAIN=example.com \
starbix/plextogether
docker run \
--name=plextogether_nginx \
-p 80:80 \
-e DOMAIN=example.com \
starbix/plextogether:nginx
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;
}
}
Content type
Image
Digest
Size
91 MB
Last updated
almost 9 years ago
docker pull starbix/plextogether