- Lab
- A Cloud Guru
Creating Your Own Docker Image
Docker Hub provides many useful, pre-made images which you can use for a variety of applications. However, if you want to use Docker in the real world, you will likely be required to design and build your own Docker images, either to customize existing images or to run your own software. In this lab, you will have the opportunity to work with Docker images by designing your own image to a set of specifications using a Dockerfile. You will then be able to run a container using your image to verify that it works.
Path Info
Table of Contents
-
Challenge
Create a Dockerfile to define the image and build it.
- Change to the project directory and create a Dockerfile.
cd ~/fruit-list vi Dockerfile
- Build a Dockerfile that meets the provided specifications.
FROM nginx:1.15.8 ADD static/fruit.json /usr/share/nginx/html/fruit.json ADD nginx.conf /etc/nginx/nginx.conf EXPOSE 80 CMD ["nginx", "-g", "daemon off;"]
- Build the image.
docker build -t fruit-list:1.0.0 .
-
Challenge
Run a container with the image in detached mode and verify that it works.
- Run a container in detached mode using the newly-created image.
docker run --name fruit-list -d -p 8080:80 fruit-list:1.0.0
- Make a request to the container and verify that you get some JSON with a list of fruits.
curl localhost:8080
What's a lab?
Hands-on Labs are real environments created by industry experts to help you learn. These environments help you gain knowledge and experience, practice without compromising your system, test without risk, destroy without fear, and let you learn from your mistakes. Hands-on Labs: practice your skills before delivering in the real world.
Provided environment for hands-on practice
We will provide the credentials and environment necessary for you to practice right within your browser.
Guided walkthrough
Follow along with the author’s guided walkthrough and build something new in your provided environment!
Did you know?
On average, you retain 75% more of your learning if you get time for practice.