From 1b509a0750f33c2b03aeb38f2515e4c4854fbb49 Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 7 Feb 2024 07:49:47 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9A=99=EF=B8=8F=20Listen=20on=20all=20interf?= =?UTF-8?q?aces=20when=20running=20in=20docker=20(#1015)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Resolves #947 --- apps/web/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/web/Dockerfile b/apps/web/Dockerfile index db6a231e7..04b22a88b 100644 --- a/apps/web/Dockerfile +++ b/apps/web/Dockerfile @@ -53,5 +53,6 @@ COPY --from=installer --chown=nextjs:nodejs /app/apps/web/public ./apps/web/publ ARG SELF_HOSTED ENV NEXT_PUBLIC_SELF_HOSTED=$SELF_HOSTED +ENV HOSTNAME=0.0.0.0 CMD ["./docker-start.sh"]