We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57f9afc commit 0082eb2Copy full SHA for 0082eb2
docs/docs/云原生开发/容器化.md
@@ -396,17 +396,26 @@ docker-compose push
396
397
### 拉取和运行多个容器
398
399
+
400
+目录结构
401
402
+```bash showLineNumbers
403
+├── backend
404
+│ ├── .env
405
+├── docker-compose.yml
406
+```
407
408
1. 在目标环境创建 docker-compose.yml:
409
410
````yaml:docker-compose.yml
411
version: '3.8'
412
services:
- frontend:
413
+ python-app-frontend:
414
image: jiangmiemie/llmchatf:0.1.0
415
ports:
416
- "8501:8501"
417
- backend:
418
+ python-app-backend:
419
image: jiangmiemie/llmchatb:0.1.0
420
421
- "8010:8010"
0 commit comments