Description
TheEXPOSE instruction in a Dockerfile is used to indicate which ports the
container listens on at runtime. It should not include an IP address or
host-port mapping.
Including an IP address or host-port mapping in the EXPOSE instruction does
not actually publish the port and can be misleading. Use docker run -p or
docker compose port mappings to bind host ports at runtime.