build(docker-compose.yml): load local .env in docker compose quick start

This commit is contained in:
Krrish Dholakia 2024-06-01 16:27:07 -07:00
parent 9b4a19b3aa
commit ce4ba80fd4

View file

@ -11,6 +11,9 @@ services:
environment:
DATABASE_URL: "postgresql://postgres:example@db:5432/postgres"
STORE_MODEL_IN_DB: "True" # allows adding models to proxy via UI
env_file:
- .env # Load local .env file
db:
image: postgres