mirror of
https://github.com/bingohuang/docker-labs.git
synced 2025-07-14 10:17:26 +08:00
11 lines
172 B
Go
11 lines
172 B
Go
package services
|
|
|
|
type checkUsedPortsTask struct {
|
|
}
|
|
|
|
func (c checkUsedPortsTask) Run(i *Instance) {
|
|
if ports, err := GetUsedPorts(i); err == nil {
|
|
i.Ports = ports
|
|
}
|
|
}
|