From ad42290f8cb78fec315a893fe9e989c4ccfdf764 Mon Sep 17 00:00:00 2001 From: ducoterra Date: Wed, 22 Apr 2020 16:07:37 -0400 Subject: [PATCH] listen on 0.0.0.0, duh --- .gitlab-ci.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f37c7db..954ddde 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ variables: CI_PROJECT_DIR: "." CI_REGISTRY_IMAGE: hub.ducoterra.net/ducoterra/django - CI_COMMIT_TAG: 3.8.2_4 + CI_COMMIT_TAG: 3.8.2_5 stages: - build diff --git a/Dockerfile b/Dockerfile index 835fcd1..2cc429d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,4 +7,4 @@ COPY manage.py manage.py COPY requirements.txt requirements.txt RUN pip install -r requirements.txt -CMD ["python","manage.py","runserver"] \ No newline at end of file +CMD ["python","manage.py","runserver", "0.0.0.0:8000"] \ No newline at end of file