In docker run -p 8080:80 ..., what do the two port numbers represent?
docker run -p 8080:80 ...
Both are separate ports on the host with no container port involved.
Host port 8080 is published to container port 80.
They are source and destination IP addresses.
Container port 8080 is published to host port 80.