fix(guide): simplify directory structure

This commit is contained in:
Mrugesh Mohapatra
2018-10-16 21:26:13 +05:30
parent f989c28c52
commit da0df12ab7
35752 changed files with 0 additions and 317652 deletions

View File

@@ -0,0 +1,18 @@
---
title: Docker build
localeTitle: Docker构建
---
## Docker构建
docker `docker build`从Dockerfile和“context”创建了一个docker镜像。上下文可以是URL或本地PATH。您可以使用可选的`-t`标记命名图像。
Dockerfile将在构建命令期间从指定的URL或本地PATH安装依赖项。必须在Dockerfile中指定容器中所需的任何依赖项。
您的映像现在存储在计算机的本地Docker映像注册表中。
构建Docker容器后可以使用相应的运行命令运行应用程序。
#### 更多信息:
* [Docker CLI docsbuild](https://docs.docker.com/engine/reference/commandline/rm/)
* [Docker构建您的应用程序](https://docs.docker.com/get-started/part2/#build-the-app)