From d77dcbc785a2bfa84b83e4f3a247965c2ab077a6 Mon Sep 17 00:00:00 2001 From: Marc 'risson' Schmitt Date: Mon, 5 Feb 2024 18:27:37 +0100 Subject: [PATCH] Dockerfile: listen on both IPv4 and IPv6 Signed-off-by: Marc 'risson' Schmitt --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4c3b6e8b..d0be6151 100644 --- a/Dockerfile +++ b/Dockerfile @@ -175,4 +175,4 @@ EXPOSE 9556/tcp # foreground without the Docker argument "--init" (which is actually another # way of activating Tini, but cannot be enabled from inside the Docker image). ENTRYPOINT ["/sbin/tini", "--", "routinator"] -CMD ["server", "--rtr", "0.0.0.0:3323", "--http", "0.0.0.0:8323", "--http", "0.0.0.0:9556"] +CMD ["server", "--rtr", "[::]:3323", "--http", "[::]:8323", "--http", "[::]:9556"]