From 313dd3d549368aa4588144b7baf6441d0ae6ed0b Mon Sep 17 00:00:00 2001 From: Halit Aksoy Date: Sun, 8 Dec 2024 22:47:30 +0300 Subject: [PATCH] feat: add docker compose --- apps/compose.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 apps/compose.yaml diff --git a/apps/compose.yaml b/apps/compose.yaml new file mode 100644 index 0000000..7d229cc --- /dev/null +++ b/apps/compose.yaml @@ -0,0 +1,9 @@ +services: + backend: + image: jhalitaksoy/mancala-backend:latest + ports: + - "5000:6000" + frontend: + image: jhalitaksoy/mancala-frontend:latest + ports: + - "3000:3000" \ No newline at end of file