Fix missing .env file

This commit is contained in:
Seamus Johnston 2022-09-23 09:21:26 -05:00
parent f16d657c6a
commit 2f9e16194e
No known key found for this signature in database
GPG key ID: 2F21225985069105
3 changed files with 13 additions and 9 deletions

View file

@ -10,10 +10,6 @@ services:
- db
working_dir: /app
entrypoint: python /app/docker_entrypoint.py
env_file:
# Non-version controlled file containing DJANGO_SP_PRIVATE_KEY
# and other sensitive values
- .env
environment:
# Send stdout and stderr straight to the terminal without buffering
- PYTHONUNBUFFERED=yup
@ -27,6 +23,9 @@ services:
- DJANGO_DEBUG=True
# Tell Django where it is being hosted
- DJANGO_BASE_URL="localhost:8080"
# --- These keys are obtained from `.env` file ---
# Set a private JWT signing key for Login.gov
- DJANGO_SECRET_LOGIN_KEY
stdin_open: true
tty: true
ports: