Option for Enabling/Disabling User Auth for Docker Compose Dev (#191)

This commit is contained in:
Yuhong Sun 2023-07-16 15:54:55 -07:00 committed by GitHub
parent 554f6f3fe7
commit 6c584f0650
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,9 @@ services:
- QDRANT_HOST=vector_db
- TYPESENSE_HOST=search_engine
- TYPESENSE_API_KEY=${TYPESENSE_API_KEY:-local_dev_typesense}
- DISABLE_AUTH=True
- DISABLE_AUTH=${DISABLE_AUTH:-True}
- GOOGLE_OAUTH_CLIENT_ID=${GOOGLE_OAUTH_CLIENT_ID:-}
- GOOGLE_OAUTH_CLIENT_SECRET=${GOOGLE_OAUTH_CLIENT_SECRET:-}
volumes:
- local_dynamic_storage:/home/storage
- file_connector_tmp_storage:/home/file_connector_storage
@ -57,7 +59,7 @@ services:
restart: always
environment:
- INTERNAL_URL=http://api_server:8080
- DISABLE_AUTH=True
- DISABLE_AUTH=${DISABLE_AUTH:-True}
relational_db:
image: postgres:15.2-alpine
restart: always