You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Darwinism/Docker/test/Module1.vb

18 lines
356 B

Imports Microsoft.VisualBasic.Serialization.JSON
Module Module1
Sub Main()
Dim ps As New Docker.PowerShell
Call Console.WriteLine(ps.RunScript("docker ps"))
Call Console.WriteLine(Docker.PS.ToArray.GetJson)
Call Console.WriteLine(Docker.Search("centos").ToArray.GetJson)
Pause()
End Sub
End Module