Docker.DotNet
Docker.DotNet copied to clipboard
:whale: .NET (C#) Client Library for Docker API
**Output of `dotnet --info`:** ``` .NET SDK (reflecting any global.json): Version: 6.0.400 Commit: 7771abd614 Laufzeitumgebung: OS Name: Windows OS Version: 10.0.19044 OS Platform: Windows RID: win10-x64 Base Path: C:\Program Files\dotnet\sdk\6.0.400\...
**Output of `dotnet --info`:** Output .NET SDK: Version: 8.0.202 Commit: 25674bb2f4 Workload version: 8.0.200-manifests.fe7a266e Runtime Environment: OS Name: Windows OS Version: 10.0.22631 OS Platform: Windows RID: win-x64 Base Path: C:\Program...
After upgrading to .net, below error is thrown while running integration tests with this package **Output of `dotnet --info`:** ``` Microsoft.Data.SqlClient.SqlException : A connection was successfully established with the server,...
Everything is now truly async, no more fake `Task.Factory.StartNew` async.
When creating a swarm service ```csharp var createService = new ServiceCreateParameters { Service = serviceSpec }; var response = await client.Swarm.CreateServiceAsync(createService); ``` The response does not contain the "Version.Index". The...
Hi, I want to speficy a config when creating a service. like this: docker service create -p 5000:80 --name test **--config src=testConfig,target="app/testconfig.txt"** myImage How can I pass the configuration in...
This api that lets you list swarm services ``` var serviceListParams = new ServicesListParameters() { Filters = new ServiceFilter() { Mode = new [] { ServiceCreationMode.Replicated } ``` the `Mode`...
What is the correct usage of client.Swarm.ListServicesAsync's parameters? The following code doesn't work. It's the same as this [test code](https://github.com/dotnet/Docker.DotNet/blob/a5ee0611f37711ec81fbdb5dc48f83e642da2a2a/test/Docker.DotNet.Tests/ISwarmOperationsTests.cs#L27). **Output of `dotnet --info`:** ``` .NET Core SDK (reflecting any...
It is not used anymore.
As referred in the api (https://docs.docker.com/engine/api/v1.41/#tag/Container/operation/ContainerAttach) The data type of the Logs property should be a boolean.