From ba9c50524915680620b2667dc74c6c17b640c6c6 Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 18 May 2023 18:45:15 +0100 Subject: [PATCH] accidentaly deleted frontend container --- docker-compose.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docker-compose.yaml b/docker-compose.yaml index 4a97fbf6..703ed4e7 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -1,6 +1,14 @@ version: "3.9" services: + frontend: + build: ./frontend + environment: + - VITE_API_HOST=http://localhost:5001 + ports: + - "5173:5173" + depends_on: + - backend backend: build: ./application