fixed allocating extra ports

This commit is contained in:
2021-04-07 23:58:28 +04:00
parent 8d417b84f5
commit ee8bed9c25
4 changed files with 24 additions and 10 deletions

View File

@@ -45,6 +45,10 @@ func PrintStartContainer(d *docker.DockerVM){
fmt.Println("SSH password: " + fmt.Sprint(d.SSHPassword))
fmt.Println("VNC port: " + fmt.Sprint(d.VNCPort))
fmt.Println("VNC password: " + fmt.Sprint(d.VNCPassword))
fmt.Println("Ports Open")
for i := range d.Ports {
fmt.Println(d.Ports[i])
}
}