From 092e91150c9a041c730042d13696debe56c9e018 Mon Sep 17 00:00:00 2001 From: Abdul Rahman Reza Date: Fri, 16 May 2025 14:15:12 +0900 Subject: [PATCH] update compose --- docker-compose.yml | 10 ++++++++++ ⁠docker-compose.yml | 11 ----------- 2 files changed, 10 insertions(+), 11 deletions(-) create mode 100644 docker-compose.yml delete mode 100644 ⁠docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..18dc0b1 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,10 @@ +version: '3.9' + +services: + api: + image: app-dashboard:1.0.0 + container_name: app-dashboard + build: . + ports: + - '4040:4040' # Specify the exposed port, we will need this to access the app from local machine + diff --git a/⁠docker-compose.yml b/⁠docker-compose.yml deleted file mode 100644 index ec677ef..0000000 --- a/⁠docker-compose.yml +++ /dev/null @@ -1,11 +0,0 @@ -version: '3.9' - -services: - api: - image: app-dashboard:1.0.0 - container_name: app-dashboard - build: . - command: npm run start - ports: - - '4040:4040' # Specify the exposed port, we will need this to access the app from local machine -