From 69673fb5ef9e726bb8db54eac20f1b653db73f0c Mon Sep 17 00:00:00 2001 From: Lars Lehmann <33843261+larsl-net@users.noreply.github.com> Date: Tue, 14 Jan 2025 17:38:31 +0100 Subject: [PATCH] fix: make backend dual stack ready --- backend/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/entrypoint.sh b/backend/entrypoint.sh index 50e034a..9ca926c 100644 --- a/backend/entrypoint.sh +++ b/backend/entrypoint.sh @@ -63,4 +63,4 @@ fi cat /code/adventurelog.txt # Start gunicorn -gunicorn main.wsgi:application --bind 0.0.0.0:8000 --timeout 120 --workers 2 \ No newline at end of file +gunicorn main.wsgi:application --bind [::]:8000 --timeout 120 --workers 2 \ No newline at end of file