Skip to content

Commit

Permalink
Listen to 0.0.0.0 in container by default
Browse files Browse the repository at this point in the history
  • Loading branch information
p1gp1g committed Oct 25, 2024
1 parent 8d5833d commit 33f4e3a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Containerfile.alpine
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN cargo build --release --locked --bin mollysocket
FROM alpine:3 AS runtime
WORKDIR app

ENV MOLLY_HOST=127.0.0.1
ENV MOLLY_HOST=0.0.0.0
ENV MOLLY_PORT=8020

RUN apk add --no-cache ca-certificates
Expand Down
2 changes: 1 addition & 1 deletion Containerfile.debian
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN cargo build --release --locked --bin mollysocket
FROM docker.io/debian:bookworm-slim AS runtime
WORKDIR app

ENV MOLLY_HOST=127.0.0.1
ENV MOLLY_HOST=0.0.0.0
ENV MOLLY_PORT=8020

RUN apt update && \
Expand Down

0 comments on commit 33f4e3a

Please sign in to comment.