- Lab
-
Libraries: If you want this lab, consider one of these libraries.
- Cloud

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.

Lab 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
About the author
Real skill practice before real-world application
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.
Learn by doing
Engage hands-on with the tools and technologies you’re learning. You pick the skill, we provide the credentials and environment.
Follow your guide
All labs have detailed instructions and objectives, guiding you through the learning process and ensuring you understand every step.
Turn time into mastery
On average, you retain 75% more of your learning if you take time to practice. Hands-on labs set you up for success to make those skills stick.