Docker lets us quickly and efficiently deploy containers for a variety of situations. Before we start mass deploying our containerized infrastructure, however, we need to make sure we can run through the basics. In this lab, we learn core Docker commands for container management by creating an Nginx web container.
Learning Objectives
Successfully complete this lab by achieving the following learning objectives:
- Create an Nginx Container
Use the
docker run
command to launch a new container based on thenginx
image with the nameweb
. Ensure the container is running detached and has not been exited.- Configure Nginx
Create the
/var/www/
directory on the container, then copy the defaultnginx
configuration inwebfiles
to/etc/nginx/conf.d
. The websites files inwebfiles/html
must also be moved to/var/www/
. Ensure thenginx
user and group owns these directories, and thatnginx
is using the new configuration.- Test and Publish the Website to Port 80
Test that the configuration was successful by trying to access the website on the container. If successful, create an image based on the container and launch a new
web01
that publishes to port80
on the localhost.