We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ee13eb commit c161690Copy full SHA for c161690
Dockerfile
@@ -24,7 +24,8 @@ EXPOSE 8080
24
# 2. Set PORT variable that is used by Gunicorn. This should match "EXPOSE"
25
# command.
26
ENV PYTHONUNBUFFERED=1 \
27
- PORT=8080
+ PORT=8080 \
28
+ DJANGO_SETTINGS_MODULE=alloydflanagan.settings.production
29
30
# Use /app folder as a directory where the source code is stored.
31
WORKDIR /app
docker-compose.yml
@@ -19,6 +19,7 @@ services:
19
- ./app/yarn.lock:/app/yarn.lock:delegated
20
environment:
21
DATABASE_URL: postgres://wagtail:development@postgres:5432/alloydflanagan
22
+ DJANGO_SETTINGS_MODULE: alloydflanagan.settings.dev
23
ports:
- "8080:8080"
0 commit comments