From 38989f9c68fe4d983f9b0c1edabe6ea79f0f218c Mon Sep 17 00:00:00 2001 From: Anas Khafaga Date: Thu, 19 Sep 2024 17:48:26 +0300 Subject: [PATCH] fix(Docker): Integrate a bind mount in the local docker compose file --- docker-compose-local.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker-compose-local.yaml b/docker-compose-local.yaml index 74bf0101..d9fd248b 100644 --- a/docker-compose-local.yaml +++ b/docker-compose-local.yaml @@ -1,6 +1,8 @@ services: frontend: build: ./frontend + volumes: + - ./frontend/src:/app/src environment: - VITE_API_HOST=http://localhost:7091 - VITE_API_STREAMING=$VITE_API_STREAMING