diff --git a/guide/english/devops/docker/index.md b/guide/english/devops/docker/index.md index 58fc765ca0..87d1875485 100644 --- a/guide/english/devops/docker/index.md +++ b/guide/english/devops/docker/index.md @@ -91,9 +91,14 @@ The Docker daemon is what actually executes commands sent to the Docker Client ### Dockerfile A Dockerfile is where you write the instructions to build a Docker image. These instructions can be: -**RUN apt-get y install some-package**: to install a software package -**EXPOSE 8000**: to expose a port -**ENV ANT_HOME /usr/local/apache-ant** to pass an environment variable and so forth. Once you’ve got your Dockerfile set up, you can use the docker build command to build an image from it. Here’s an example of a Dockerfile: + + * **RUN apt-get -y install some-package**: to install a software package + * **EXPOSE 8000**: to expose a port + * **ENV ANT_HOME /usr/local/apache-ant** to pass an environment variable and so forth. + +Once you’ve got your Dockerfile set up, you can use the docker build command to build an image from it. + +Here’s an example of a Dockerfile: ``` # Start with ubuntu 14.04