We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This patch doesn't work... Is there something else that needs to change for it to talk to port 80?
--- a/context/shiny-server/shiny-server.conf +++ b/context/shiny-server/shiny-server.conf @@ -2,7 +2,7 @@ run_as shiny; server { # "listen" needs to match "--publish" target. - listen 3838; + listen 80; location / { app_dir /srv/shiny-server/shiny-app/; log_dir /var/log/shiny-server; --- a/docker_run.sh +++ b/docker_run.sh @@ -11,6 +11,6 @@ echo $INPUT_JSON docker run --env INPUT_JSON \ --name "$CONTAINER_NAME" \ --detach \ - --publish "$PORT:3838" \ + --publish "$PORT:80" \ $IMAGE echo "Visit http://localhost:$PORT"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This patch doesn't work... Is there something else that needs to change for it to talk to port 80?
The text was updated successfully, but these errors were encountered: