Valid 200-901 Dumps shared by ExamDiscuss.com for Helping Passing 200-901 Exam! ExamDiscuss.com now offer the newest 200-901 exam dumps, the ExamDiscuss.com 200-901 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 200-901 dumps with Test Engine here:
Which two commands download and execute an Apache web server container in Docker with a port binding 8080 in the container to 80 on the host? (Choose two.)
Correct Answer: B,D
To download and execute an Apache web server container in Docker, you need to perform two steps: pulling the image and running the container with the appropriate port bindings. * docker pull httpd - This command downloads the Apache HTTP server image from the Docker repository. "httpd" is the official name for the Apache HTTP server image on Docker Hub. * docker run -p 8080:80 httpd - This command runs a new container from the "httpd" image, mapping port 8080 on the host to port 80 in the container. This allows you to access the web server running in the container via port 8080 on your host machine. References: * Docker Documentation - docker pull * Docker Documentation - docker run * Cisco DevNet Associate Certification Guide