Skip to content

Commit

Permalink
Docker: fix exposed port to be 8071. (#1596)
Browse files Browse the repository at this point in the history
I don't think exposing 8080 ever did anything as the server is listening
on 8071. It looks like a customer has been facing issues with their
docker setup not letting them map the port because it doesn't match the
exposed from the dockerfile. I'm not sure how it works for everyone else
but not here though anyhow it should be fixed.

Ref: https://x.com/0xblacklight/status/1872430388158533871
  • Loading branch information
tasn authored Dec 27, 2024
1 parent 63404ed commit 67fcc20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ RUN apt-get update && apt-get install -y \
rm -rf /var/lib/apt/lists/*

USER appuser
EXPOSE 8080
EXPOSE 8071

COPY --from=build /app/target/release/svix-server /usr/local/bin/svix-server

Expand Down

0 comments on commit 67fcc20

Please sign in to comment.