QuestionQ375
Application Deployment and SecurityWhich two commands download and run an Apache web server container in Docker, with port 8080 in the container bound to port 80 on the host?
Choose two
- A docker pull apache
- B docker run –p 8080:80 httpd
- C docker run –p 80:8080 httpd
- D docker pull httpd
- E docker pull https
Community Discussion