diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 00000000..bb964a14 --- /dev/null +++ b/.dockerignore @@ -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 diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..141bf286 --- /dev/null +++ b/Dockerfile @@ -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 diff --git a/README.es.md b/README.es.md index dc20fa42..9544ec8b 100644 --- a/README.es.md +++ b/README.es.md @@ -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 diff --git a/README.ja.md b/README.ja.md index 3bc3ce8b..4c59f3d6 100644 --- a/README.ja.md +++ b/README.ja.md @@ -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 diff --git a/README.md b/README.md index f3b72482..cfb42842 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/README.zh-CN.md b/README.zh-CN.md index b6d34e36..e53b8255 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -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 diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 00000000..8eb60514 --- /dev/null +++ b/docker-compose.yaml @@ -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