feat: unified compose file

Adds unirifed compose file to orchestrate the example servers using a single command
This commit is contained in:
Vijaykoushik Sekar 2025-04-04 12:40:20 +05:30
parent d2239bbe12
commit e80caf79ea

17
compose.yaml Normal file
View File

@ -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