Files
AILab/server/docker/docker-compose.yaml
T
BBIT-Kai 64262c4432 更新
2025-10-22 13:54:10 +08:00

27 lines
552 B
YAML

services:
# ---------- Vue 前端 ----------
vue:
container_name: ce_vue
image: s1.ronsunny.cn:13011/bbit_ai/ce_vue:latest
networks:
- ce_network
restart: always
# ---------- Python 后端 ----------
backend:
container_name: ce_pybackend
image: s1.ronsunny.cn:13011/bbit_ai/ce_pybackend:latest
networks:
- ce_network
restart: unless-stopped
depends_on:
- vue
extra_hosts:
- "s1.ronsunny.cn:10.10.10.9"
# ---------- 网络 ----------
networks:
ce_network:
external: true