diff --git a/Dockerfile b/Dockerfile index 97647ee..909d120 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,5 +5,5 @@ RUN apk add --update py3-pillow RUN pip3 install django==1.11.7 django-jinja django-rest-framework django-analytical ADD ["ofu_app", "/app"] WORKDIR /app -EXPOSE 8080 -CMD ["python3", "manage.py", "runserver", "0.0.0.0:8080"] \ No newline at end of file +EXPOSE 80 +CMD ["python3", "manage.py", "runserver", "0.0.0.0:80"] diff --git a/docker-compose.yml b/docker-compose.yml index 9fe6f3c..e10f7ff 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5,7 +5,7 @@ services: image: docker.wiai.de/basta/server:0.1 build: . ports: - - "8080:8080" + - "8080:80" # basta_server_db: # image: postgres:alpine - \ No newline at end of file +