From 5b08cdedf0ff056fad2a37bad7bcdc5d147a5b24 Mon Sep 17 00:00:00 2001 From: ManishMadan2882 Date: Mon, 22 Jan 2024 16:22:19 +0530 Subject: [PATCH] revert changes in docker yaml --- docker-compose.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docker-compose.yaml b/docker-compose.yaml index 290345ab..7008b53d 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -1,6 +1,15 @@ version: "3.9" services: + frontend: + build: ./frontend + environment: + - VITE_API_HOST=http://localhost:7091 + - VITE_API_STREAMING=$VITE_API_STREAMING + ports: + - "5173:5173" + depends_on: + - backend backend: build: ./application