Skip to content

Commit 956d8af

Browse files
committed
Docker: fix exposed port to be 8071.
I don't 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
1 parent dbc59e3 commit 956d8af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ RUN apt-get update && apt-get install -y \
5050
rm -rf /var/lib/apt/lists/*
5151

5252
USER appuser
53-
EXPOSE 8080
53+
EXPOSE 8071
5454

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

0 commit comments

Comments
 (0)