Description
The docker run command in .github/workflows/release.yml maps container port 80, but the Dockerfile now uses nginxinc/nginx-unprivileged:alpine which exposes port 8080. Users following the published release instructions will get a connection refused error.
Steps to reproduce
- Follow the Docker instructions published in a GitHub Release.
- Run:
docker run -p 7777:80 ghcr.io/<repo>:<version>
- Attempt to access
http://localhost:7777 — connection will be refused.
Expected fix
Update the port mapping in the release workflow body:
- docker run -p 7777:80 ghcr.io/${{ github.repository }}:${{ steps.tag.outputs.VERSION }}
+ docker run -p 7777:8080 ghcr.io/${{ github.repository }}:${{ steps.tag.outputs.VERSION }}
References
Requested by: @Delgado74
Description
The
docker runcommand in.github/workflows/release.ymlmaps container port80, but the Dockerfile now usesnginxinc/nginx-unprivileged:alpinewhich exposes port8080. Users following the published release instructions will get a connection refused error.Steps to reproduce
docker run -p 7777:80 ghcr.io/<repo>:<version>http://localhost:7777— connection will be refused.Expected fix
Update the port mapping in the release workflow body:
References
Requested by: @Delgado74