diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2022-08-03 15:21:51 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2022-08-03 15:21:51 +0200 |
| commit | 041a57335320cda1cf4cc4417a56493a5c98b96a (patch) | |
| tree | 83970be6f437b74d8b27ea2d3aa69b3145d71ea2 | |
| parent | 75f9b2bbc7183af8716574d73a2a1c5d32db3287 (diff) | |
fix(web/server): Remove unused Auth0 runner configuration
This change removes the unused Auth0 runner configuration from the
Docker Compose configuration. Currently, it is marked as required, so
Docker Compose will fail if these values are not specified.
| -rw-r--r-- | docker-compose.yml | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index a6d6ce1d..65354e67 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -31,8 +31,6 @@ services: OPENDC_AUTH0_DOMAIN: ${OPENDC_AUTH0_DOMAIN:?No Auth0 domain specified} OPENDC_AUTH0_AUDIENCE: ${OPENDC_AUTH0_AUDIENCE:?No Auth0 audience specified} OPENDC_API_URL: ${OPENDC_API_BASE_URL:-http://web:8080} - OPENDC_AUTH0_CLIENT_ID_RUNNER: ${OPENDC_AUTH0_CLIENT_ID_RUNNER:?No client id for runner} - OPENDC_AUTH0_CLIENT_SECRET_RUNNER: ${OPENDC_AUTH0_CLIENT_SECRET_RUNNER:?No client secret for runner} SENTRY_DSN: ${OPENDC_SERVER_SENTRY_DSN-} postgres: |
