We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4549b7 commit 2b3ca06Copy full SHA for 2b3ca06
Docker.DotNet/ContainerOperations.cs
@@ -60,10 +60,10 @@ public async Task<CreateContainerResponse> CreateContainerAsync(CreateContainerP
60
{
61
throw new ArgumentNullException("parameters");
62
}
63
+
64
if (!string.IsNullOrEmpty(parameters.ContainerName)) {
- qs = new QueryString<string>(parameters.ContainerName);
65
+ qs = new QueryString<CreateContainerParameters>(parameters);
66
-
67
68
string path = "containers/create";
69
JsonRequestContent<Config> data = null;
0 commit comments