Error in DO180 Introduction to Containers, Kubernetes, and Red Hat OpenShift

Latest response

In '2.5 Lab: Creating Containerized Services' section:

Procedure 2.3. Steps

a. Check how to start a container from the Apache HTTP Server container image using the docker command.

Is:

docker run -it --rm --name my-apache-app \
-v "$PWD":/usr/local/apache2/htdocs/httpd:2.4

Should be:

docker run -it --rm --name my-apache-app \
-v "$PWD":/usr/local/apache2/htdocs httpd:2.4

Responses