0
0
Dockerdevops~20 mins

EXPOSE instruction for ports in Docker - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Port Exposure Pro
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
What does the EXPOSE instruction do in a Dockerfile?

Choose the correct explanation of the EXPOSE instruction in a Dockerfile.

AIt sets environment variables inside the container related to network ports.
BIt documents the ports the container listens on at runtime but does not publish them automatically.
CIt blocks all network traffic to the container except on the exposed ports.
DIt automatically publishes the specified ports to the host machine when the container runs.
Attempts:
2 left
💡 Hint

Think about whether EXPOSE opens ports by itself or just informs about them.

💻 Command Output
intermediate
2:00remaining
What is the output of 'docker port' after EXPOSE?

Given a Dockerfile with EXPOSE 8080 and a container started without port mapping, what does docker port <container_id> show?

Docker
Dockerfile:
FROM nginx
EXPOSE 8080

Commands:
docker build -t test-expose .
docker run -d --name test-container test-expose
docker port test-container
ANo output, because no ports are published to the host.
BShows 8080/tcp -> 0.0.0.0:8080, mapping container port to host port.
CShows an error because EXPOSE is not a valid command.
DShows 8080/tcp -> <container_ip>:8080, internal container mapping.
Attempts:
2 left
💡 Hint

Consider if docker run without -p or --publish publishes ports.

Configuration
advanced
2:00remaining
Which Dockerfile snippet correctly exposes multiple ports?

Select the Dockerfile snippet that correctly exposes ports 80 and 443.

AEXPOSE 80 443
B
EXPOSE 80
EXPOSE 443
CEXPOSE [80, 443]
DEXPOSE "80,443"
Attempts:
2 left
💡 Hint

Think about how Dockerfile instructions handle multiple lines versus single line with multiple ports.

Troubleshoot
advanced
2:00remaining
Why can't I access my container's service on the exposed port?

You have a Dockerfile with EXPOSE 5000 and run the container with docker run myapp. You try to access the service on port 5000 from your host but fail. What is the most likely reason?

ADocker automatically blocks all ports unless you disable the firewall on your host.
BThe container's firewall is blocking port 5000 internally.
CThe EXPOSE instruction does not publish ports to the host; you must use <code>-p 5000:5000</code> when running the container.
DThe EXPOSE instruction is missing the protocol, so it defaults to UDP which is not accessible.
Attempts:
2 left
💡 Hint

Remember what EXPOSE does and what is needed to make ports accessible from outside the container.

Best Practice
expert
2:00remaining
What is the best practice for using EXPOSE in multi-stage Dockerfiles?

In a multi-stage Dockerfile, where should you place the EXPOSE instruction to correctly document the ports for the final image?

ADo not use EXPOSE in multi-stage Dockerfiles because it causes conflicts.
BPlace EXPOSE in every stage to document all ports used during build and runtime.
CPlace EXPOSE only in the first stage to optimize build caching.
DPlace EXPOSE only in the final stage to document ports for the final image.
Attempts:
2 left
💡 Hint

Think about which stage produces the final image used to run containers.