Files
model-platform/docker-compose.yml
T
2026-07-28 11:32:06 +08:00

22 lines
390 B
YAML

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"
environment:
- PUBLIC_BASE_URL=http://runtime