mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-31 06:56:33 +02:00
Fix missing .env file
This commit is contained in:
parent
f16d657c6a
commit
2f9e16194e
3 changed files with 13 additions and 9 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue