Merge e7c2b6c453
into 33a93a12b4
This commit is contained in:
commit
cafd9e07a0
|
@ -0,0 +1,24 @@
|
|||
.DS_Store
|
||||
node_modules/
|
||||
vendor/
|
||||
dist/
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
**/*.log
|
||||
|
||||
tests/**/coverage/
|
||||
tests/e2e/reports
|
||||
selenium-debug.log
|
||||
|
||||
# Editor directories and files
|
||||
.idea
|
||||
.vscode
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.local
|
||||
|
||||
package-lock.json
|
||||
yarn.lock
|
|
@ -0,0 +1,17 @@
|
|||
FROM node:12-alpine
|
||||
|
||||
# Create app directory
|
||||
WORKDIR /usr/app
|
||||
|
||||
# Copy project files
|
||||
COPY . ./
|
||||
|
||||
# Install app dependencies
|
||||
# A wildcard is used to ensure both package.json AND package-lock.json are copied
|
||||
# where available (npm@5+)
|
||||
RUN npm install \
|
||||
&& npm run build:prod
|
||||
# Build state files
|
||||
|
||||
# Start builded application
|
||||
CMD npm run preview
|
|
@ -193,6 +193,13 @@ npm run lint
|
|||
npm run lint -- --fix
|
||||
```
|
||||
|
||||
## Contenedor Docker
|
||||
|
||||
```bash
|
||||
# requiere permisos de superusuario del sistema operativo ('su' o 'sudo')
|
||||
docker-componer up
|
||||
```
|
||||
|
||||
Vaya a [Documentación](https://panjiachen.github.io/vue-element-admin-site/guide/essentials/deploy.html) para mayor información
|
||||
|
||||
## Registro de Cambios
|
||||
|
|
|
@ -189,6 +189,13 @@ npm run lint
|
|||
npm run lint -- --fix
|
||||
```
|
||||
|
||||
## Dockerコンテナ
|
||||
|
||||
```bash
|
||||
#オペレーティングシステムのスーパーユーザー権限が必要( 'su'または 'sudo')
|
||||
docker-compose up
|
||||
```
|
||||
|
||||
詳細は [Documentation](https://panjiachen.github.io/vue-element-admin-site/guide/essentials/deploy.html) を参照してください。
|
||||
|
||||
## Changelog
|
||||
|
|
|
@ -215,6 +215,13 @@ npm run lint
|
|||
npm run lint -- --fix
|
||||
```
|
||||
|
||||
## Docker Container
|
||||
|
||||
```bash
|
||||
# requires superuser permissions of the operating system ('su' or 'sudo')
|
||||
docker-compose up
|
||||
```
|
||||
|
||||
Refer to [Documentation](https://panjiachen.github.io/vue-element-admin-site/guide/essentials/deploy.html) for more information
|
||||
|
||||
## Changelog
|
||||
|
|
|
@ -233,6 +233,13 @@ npm run lint
|
|||
npm run lint -- --fix
|
||||
```
|
||||
|
||||
## Docker容器
|
||||
|
||||
```bash
|
||||
# 需要操作系统的超级用户权限(“ su”或“ sudo”)
|
||||
docker-compose up
|
||||
```
|
||||
|
||||
更多信息请参考 [使用文档](https://panjiachen.github.io/vue-element-admin-site/zh/)
|
||||
|
||||
## Changelog
|
||||
|
|
|
@ -0,0 +1,18 @@
|
|||
version: '3.7'
|
||||
|
||||
services:
|
||||
web-client:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: ./Dockerfile
|
||||
container_name: vue-element-admin
|
||||
network_mode: bridge
|
||||
volumes:
|
||||
- /usr/app/
|
||||
- /usr/app/node_modules
|
||||
labels:
|
||||
- app=vue-element-admin
|
||||
stdin_open: true
|
||||
tty: true
|
||||
ports:
|
||||
- 9526:9526 # Prod
|
Loading…
Reference in New Issue