docker run -p <host_port>:<container_port> <image>

Meaning: Maps a port on the host to a port on the container. Usage: Allows external access to services running inside the container. Example: docker run -p 8080:80 nginx maps port 80 in the container to port 8080 on the host.