update: add common

This commit is contained in:
tao.chen
2026-07-27 15:37:58 +08:00
parent e56bf0e56b
commit 1c03a32298
8 changed files with 91 additions and 9 deletions
+20
View File
@@ -0,0 +1,20 @@
version: '3.8'
services:
backend:
build:
context: .
dockerfile: backend/Dockerfile
ports:
- "8000:8000"
environment:
- RUNTIME_BASE_URL=http://runtime:8001
depends_on:
- runtime
runtime:
build:
context: .
dockerfile: runtime/Dockerfile
ports:
- "8001:8001"