You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
where port is integer, but in referenceEXPOSE is defined as
EXPOSE <port> [<port>/<protocol>...]
The EXPOSE instruction informs Docker that the container listens on the specified network ports at runtime. You can specify whether the port listens on TCP or UDP, and the default is TCP if the protocol is not specified.
The text was updated successfully, but these errors were encountered:
zemanlx
changed the title
Fix EXPOSE with porotocol
Fix EXPOSE with protocol
Nov 27, 2017
Right now there is only supported
EXPOSE <port> [<port> ...]
where
port
is integer, but in referenceEXPOSE
is defined asEXPOSE <port> [<port>/<protocol>...]
The text was updated successfully, but these errors were encountered: