add files

This commit is contained in:
2021-04-11 01:26:55 +04:00
parent d2b050b14b
commit fdbb7bc587
77 changed files with 10832 additions and 0 deletions

View File

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