docs: 增加 docker-compose 部署支持

This commit is contained in:
RockYang
2023-06-22 22:14:18 +08:00
parent 7f2ebb6aeb
commit beeef7a4f7
10 changed files with 173 additions and 51 deletions

9
docker/dockerfile-vue Normal file
View File

@@ -0,0 +1,9 @@
# 前端 Vue 项目构建
FROM nginx:1.20.2
MAINTAINER yangjian<yangjian102621@163.com>
WORKDIR /var/www/app
COPY ./web/dist /var/www/app/dist
EXPOSE 80 443 8080