Jenkins Kata 5: Docker Container Build Step
Learn about adding a Dockerfile, installing a Docker plugin, running a private Docker repository, and adding a Docker build step.
Step 1: Add a Dockerfile
To do this:
- Use the NGINX image and copy the files to the container.
nano Dockerfile
- Enter the following into the text editor:
FROM nginxADD storelist.htm store.png style.css /usr/share/nginx/html/
- Save the changes.
Build the Dockerfile as follows:
docker build -t storelist_image .
Command's Parameters
Command / Parameter | Description |
| This is the parent command. Docker build creates a new image from a Dockerfile. |
| This adds a tag to the image. |
| This is the tag to be added to the new image. |
| This is a reference to the local directory, which indicates to the |
Cody’s first step in containerizing the “web-storelist” application is to add a Dockerfile. The Dockerfile contains directives that copy the files of the application to an image based on the official NGINX image. NGINX is an open-source HTTP server. Cody then tests the Dockerfile by building it manually with the docker build
command.
Run the image locally as follows:
docker container run -d -p 81:80 storelist_image
Command's Parameters
Command / Parameter | Description |
| This is the parent command. The |
| The run command runs a container. |
| This maps ports between the container and the host. |
| This is the value used by the |
| This is the name of the image to run. |
curl localhost
Commands
Command / Parameter | Description |
| The |
| This is an alias for the local computer. |
The commands to add the Dockerfile to Cody’s repository index, commit, and push are given below:
git add Dockerfilegit commit -a -m "Adding Dockerfile"git push origin master #(username: cody.coder | password: katas)
Command's Parameters
Command / Parameter | Description |
| This creates a new commit in the local repository. |
| This includes all modified files in the new commit. |
| This sets the commit message in the command line. |
| This is the commit message that will be associated with the new commit. |
| This pushes commits to a remote Git server. All local commits missing from the remote will be pushed. |
| This is the registered name of the remote Git server. The default name is `origin`. |
| This is the name of the branch to push. |
These commands commit the addition of the Dockerfile to the local “web-storelist” Git repository, then push that commit to the Gogs server. If we return to Jenkins, we should see a new, recent build in the “web-storelist” job. When the commit was pushed to Gogs, the webhook executed and triggered the build. We can also view the workspace of the job and should ...