端口(Long Syntax)
| 20 | |
| 21 | // 端口(Long Syntax) |
| 22 | type PortComplex struct { |
| 23 | Target string `yaml:"target"` // 容器内部端口号 |
| 24 | Published string `yaml:"published"` // 暴露的端口号 |
| 25 | Protocol string `yaml:"protocol,omitempty"` // 传输协议 |
| 26 | // TODO mode |
| 27 | } |
| 28 | |
| 29 | // 实现公共接口 |
| 30 | func (PortComplex) IsPort() bool { |
nothing calls this directly
no outgoing calls
no test coverage detected