You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
279 B
Markdown
16 lines
279 B
Markdown
2 years ago
|
### docker-compose 部署教程
|
||
|
- 将打包好的前端文件放到 `nginx/html` 目录下
|
||
|
- ```shell
|
||
|
# 打包启动
|
||
|
docker-compose build
|
||
|
docker-compose up -d
|
||
|
```
|
||
|
- ```shell
|
||
|
# 查看运行状态
|
||
|
docker ps
|
||
|
```
|
||
|
- ```shell
|
||
|
# 结束运行
|
||
|
docker-compose down
|
||
|
```
|