April 2017
Beginner
404 pages
9h 30m
English
The following method starts a container by Container Id:
/// <summary> /// Starts a container by Container Id /// </summary> /// <param name="id">Container Id</param> private async static Task<bool> StartContainer(string id) { client = new DockerClientConfiguration (new Uri(containerHostUrl)).CreateClient(); return await client.Containers.StartContainerAsync (id, null); }
Read now
Unlock full access