From 60c029acb36252f5e670f08bac81772308b4e082 Mon Sep 17 00:00:00 2001 From: Jack Wilburn Date: Mon, 22 Jan 2024 11:11:27 -0700 Subject: [PATCH] Update server address in entrypoint.sh --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 9e28d70..947bf56 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -13,7 +13,7 @@ poetry run python manage.py migrate --no-input # Start server if [ "$DJANGO_DEBUG" = "True" ]; then - poetry run python manage.py runserver + poetry run python manage.py runserver 0.0.0.0:8000 else poetry run gunicorn api.wsgi:application --bind 0.0.0.0:8000 fi