parse --publish ports into spec

This commit is contained in:
Pavel Sviderski
2024-12-10 17:57:26 +10:00
parent deedbcb8a9
commit e8908ced9e
4 changed files with 25 additions and 8 deletions
+2 -1
View File
@@ -41,7 +41,8 @@ func (p *PortSpec) Validate() error {
switch p.Protocol {
case ProtocolHTTP, ProtocolHTTPS, ProtocolTCP, ProtocolUDP:
default:
return fmt.Errorf("invalid protocol: '%s'", p.Protocol)
return fmt.Errorf("invalid protocol '%s', supported protocols: '%s', '%s', '%s', '%s'",
p.Protocol, ProtocolHTTP, ProtocolHTTPS, ProtocolTCP, ProtocolUDP)
}
switch p.Mode {