converted docker api code to go lang

This commit is contained in:
2021-03-25 01:25:56 +04:00
parent 380e5afcfe
commit 1258b16a84
5 changed files with 832 additions and 164 deletions

View File

@@ -0,0 +1,16 @@
package docker
import (
"fmt"
"testing"
)
func TestDocker(t *testing.T) {
resp,err := BuildRunContainer()
if err != nil {
t.Error(err)
}
fmt.Print(resp.VNCPort)
}