From e80caf79eab0ce55e1e2e1fc3e2decfeecd7e577 Mon Sep 17 00:00:00 2001 From: Vijaykoushik Sekar Date: Fri, 4 Apr 2025 12:40:20 +0530 Subject: [PATCH] feat: unified compose file Adds unirifed compose file to orchestrate the example servers using a single command --- compose.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 compose.yaml diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..2f4cf27 --- /dev/null +++ b/compose.yaml @@ -0,0 +1,17 @@ +services: + filesystem-server: + build: + context: ./servers/filesystem + ports: + - 8081:8000 + memory-server: + build: + context: ./servers/memory + ports: + - 8082:8000 + time-server: + build: + context: ./servers/time + ports: + - 8083:8000 +