From 66a7f6d86b6392d271196c7a5674e91708612759 Mon Sep 17 00:00:00 2001 From: Aaron Guise Date: Tue, 18 Feb 2025 21:58:53 +1300 Subject: [PATCH] =?UTF-8?q?fix:=20Listen=20on=20ipv6=20address=20=20?= =?UTF-8?q?=F0=9F=90=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b68c54b..8fe4971 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,5 +25,5 @@ RUN dnf remove -y ${DEV_DEPENDENCIES} \ # Set up the container to execute SQL migrations and run the API server with gunicorn ENV ARA_BASE_DIR=/opt/ara -CMD ["bash", "-c", "/usr/local/bin/ara-manage migrate && python3 -m gunicorn --workers=4 --access-logfile - --bind 0.0.0.0:8000 ara.server.wsgi" ] +CMD ["/bin/bash", "-c", "/usr/local/bin/ara-manage migrate && python3 -m gunicorn --workers=4 --access-logfile - --bind [::]:8000 --access-logformat '%({x-forwarded-for}i)s %l %u %t \"%r\" %s %b \"%f\" \"%a\"' ara.server.wsgi"] EXPOSE 8000 \ No newline at end of file