From 7341b1292b5b01411fcaeb16edfafe16892b2111 Mon Sep 17 00:00:00 2001 From: Ken Jenney Date: Sat, 18 Jan 2025 12:38:34 -0500 Subject: [PATCH] Get environment variables from .env.local Environment variables are not being passed to the container in the development profile. Adding env_file to pass them so they can be used by the application. --- docker-compose.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.yaml b/docker-compose.yaml index 9c28c6470..47938e0a5 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -37,6 +37,7 @@ services: image: bolt-ai:development build: target: bolt-ai-development + env_file: ".env.local" environment: - NODE_ENV=development - VITE_HMR_PROTOCOL=ws