Ductus.FluentDocker 2.10.59

dotnet add package Ductus.FluentDocker --version 2.10.59                
NuGet\Install-Package Ductus.FluentDocker -Version 2.10.59                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Ductus.FluentDocker" Version="2.10.59" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Ductus.FluentDocker --version 2.10.59                
#r "nuget: Ductus.FluentDocker, 2.10.59"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Ductus.FluentDocker as a Cake Addin
#addin nuget:?package=Ductus.FluentDocker&version=2.10.59

// Install Ductus.FluentDocker as a Cake Tool
#tool nuget:?package=Ductus.FluentDocker&version=2.10.59                

FluentDocker

This library enables docker and docker-compose interactions using a Fluent API. It is supported on Linux, Windows and Mac. It also has support for the legacy docker-machine interactions.

Have a look at the project site for more information.

Sample Fluent API usage

      using (
        var container =
          new Builder().UseContainer()
            .UseImage("kiasaki/alpine-postgres")
            .ExposePort(5432)
            .WithEnvironment("POSTGRES_PASSWORD=mysecretpassword")
            .WaitForPort("5432/tcp", 30000 /*30s*/)
            .Build()
            .Start())
      {
        var config = container.GetConfiguration(true);
        Assert.AreEqual(ServiceRunningState.Running, config.State.ToServiceState());
      }

The following snippet fires up Postgres and waits for it to be ready. It uses docker-compose file to perform the task.

      var file = Path.Combine(Directory.GetCurrentDirectory(),
        (TemplateString) "Resources/ComposeTests/WordPress/docker-compose.yml");

      // @formatter:off
      using (var svc = new Builder()
                        .UseContainer()
                        .UseCompose()
                        .FromFile(file)
                        .RemoveOrphans()
                        .WaitForHttp("wordpress", "http://localhost:8000/wp-admin/install.php") 
                        .Build().Start())
        // @formatter:on
      {
        // We now have a running WordPress with a MySql database        
        var installPage = await "http://localhost:8000/wp-admin/install.php".Wget();

        Assert.IsTrue(installPage.IndexOf("https://wordpress.org/", StringComparison.Ordinal) != -1);
        Assert.AreEqual(1, svc.Hosts.Count); // The host used by compose
        Assert.AreEqual(2, svc.Containers.Count); // We can access each individual container
        Assert.AreEqual(2, svc.Images.Count); // And the images used.
      }

👀 It has tons of features, including a low-level command style, services and finally, the Fluent API on top of it.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (21)

Showing the top 5 NuGet packages that depend on Ductus.FluentDocker:

Package Downloads
Ductus.FluentDocker.XUnit

XUnit Support to allow for create, run one or more docker images while testing using docker, compose, machine (Linux, Windows, Mac) using netcore or full framework. Documentation: https://github.com/mariotoffia/FluentDocker

Ductus.FluentDocker.MsTest

Ms Test Support to allow for create, run one or more docker images while testing using docker, compose, machine (Linux, Windows, Mac) using netcore or full framework. Documentation: https://github.com/mariotoffia/FluentDocker

NinjaTools.FluentMockServer

A C# Client for the MockServer Docker Image

Be.Vlaanderen.Basisregisters.DockerUtilities

Docker utilities for C#.

NinjaTools.FluentMockServer.TestContainers

In memory docker container runner for NinjaTools.FluentMockServer

GitHub repositories (8)

Showing the top 5 popular GitHub repositories that depend on Ductus.FluentDocker:

Repository Stars
Xabaril/AspNetCore.Diagnostics.HealthChecks
Enterprise HealthChecks for ASP.NET Core Diagnostics Package
mariotoffia/FluentDocker
Use docker, docker-compose local and remote in tests and your .NET core/full framework apps via a FluentAPI
danielgerlag/conductor
Distributed workflow server
SQLStreamStore/SQLStreamStore
Stream Store library targeting RDBMS based implementations for .NET
axzxs2001/Asp.NetCoreExperiment
原来所有项目都移动到**OleVersion**目录下进行保留。新的案例装以.net 5.0为主,一部分对以前案例进行升级,一部分将以前的工作经验总结出来,以供大家参考!
Version Downloads Last updated
2.10.59 2,078,831 1/11/2023
2.10.57 385,739 9/24/2022
2.10.56 82,711 8/24/2022
2.10.55 122,820 6/24/2022
2.10.54 1,560 6/24/2022
2.10.53 3,333 6/23/2022
2.10.51 32,638 6/7/2022
2.10.50 1,994 6/7/2022
2.10.48 11,533 5/30/2022
2.10.46 1,979 5/30/2022
2.10.45 297,681 3/9/2022
2.10.44 297,131 12/8/2021
2.10.42 110,178 11/24/2021
2.10.41 8,417 11/23/2021
2.10.40 39,858 10/27/2021
2.10.39 30,220 10/1/2021
2.10.35 1,331 10/1/2021
2.10.25 1,591 10/1/2021
2.10.23 1,660 10/1/2021
2.10.22 6,209 9/29/2021
2.10.21 21,032 9/19/2021
2.10.20 2,007 9/17/2021
2.10.19 1,262 9/16/2021
2.10.17 1,413 9/16/2021
2.10.16 1,425 9/15/2021
2.10.15 1,227 9/15/2021
2.10.14 2,632 9/14/2021
2.10.12 1,317 9/14/2021
2.10.10 8,532 9/13/2021
2.10.8 1,345 9/13/2021
2.10.7 133,634 6/11/2021
2.10.6 86,128 4/23/2021
2.10.5 12,809 4/20/2021
2.10.3 11,430 4/5/2021
2.10.2 42,393 3/28/2021
2.9.4 1,508 3/26/2021
2.9.3-beta.2 717 3/25/2021
2.8.14-beta.22 221 3/24/2021
2.8.13-beta.21 215 3/24/2021
2.8.12-beta.20 217 3/23/2021
2.8.11-beta.19 182 3/22/2021
2.8.10-beta.18 190 3/22/2021
2.8.9-beta.17 208 3/22/2021
2.8.8-beta.14 202 3/17/2021
2.8.7-beta.9 217 3/11/2021
2.8.5-beta.4 284 3/7/2021
2.8.5-beta.2 184 3/24/2021
2.8.4-beta.3 186 3/3/2021
2.8.3 2,376 3/24/2021
2.8.2 20,612 3/3/2021
2.7.80-beta.159 234 3/1/2021
2.7.71-beta.150 4,501 11/27/2020
2.7.69-beta.147 4,572 10/12/2020
2.7.68-beta.146 5,758 10/8/2020
2.7.66-beta.142 1,864 8/8/2020
2.7.65-beta.141 263 8/7/2020
2.7.64-beta.140 353 8/6/2020
2.7.62-beta.138 6,809 5/4/2020
2.7.60-beta.127 308 4/30/2020
2.7.59-beta0123 1,539 2/13/2020
2.7.58-beta0122 1,151 2/12/2020
2.7.54-beta0117 2,493 1/23/2020
2.7.53-beta0116 1,248 1/23/2020
2.7.52-beta0105 1,221 1/20/2020
2.7.51-beta0102 3,931 1/14/2020
2.7.50-beta0094 1,227 12/20/2019
2.7.49-beta0091 1,220 12/18/2019
2.7.48-beta0087 1,282 12/17/2019
2.7.47-beta0081 1,147 12/17/2019
2.7.46-beta0080 2,830 12/16/2019
2.7.45-beta0079 1,194 12/12/2019
2.7.44-beta0078 1,174 12/12/2019
2.7.42-beta0076 1,144 12/12/2019
2.7.41-beta0075 1,114 12/12/2019
2.7.38-beta0072 2,629 11/24/2019
2.7.37-beta0071 1,280 11/24/2019
2.7.36-beta0070 1,173 11/24/2019
2.7.35-beta0069 1,145 11/20/2019
2.7.34-beta0068 1,081 11/20/2019
2.7.33-beta0067 1,227 11/20/2019
2.7.32-beta0066 1,138 11/12/2019
2.7.31-beta0064 1,220 11/12/2019
2.7.30-beta0050 1,107 11/8/2019
2.7.29-beta0046 1,116 11/8/2019
2.7.28-beta0045 1,111 11/8/2019
2.7.27-beta0043 1,138 11/8/2019
2.7.21-beta0036 1,137 11/8/2019
2.7.20-beta0032 1,129 11/8/2019
2.7.19-beta0030 1,194 11/8/2019
2.7.4-beta0001 1,140 11/8/2019
2.7.3 535,013 10/18/2019
2.7.2 12,332 9/10/2019
2.7.1 180,211 8/7/2019
2.7.0 2,258 8/6/2019
2.6.9 4,891 7/29/2019
2.6.8 51,346 5/31/2019
2.6.7 2,223 5/17/2019
2.6.6 4,687 4/11/2019
2.6.5 3,023 4/2/2019
2.6.4 14,298 12/6/2018
2.6.3 5,757 10/15/2018
2.6.2 1,840 10/3/2018
2.6.1 1,740 10/3/2018
2.6.0 1,776 10/2/2018
2.5.1 2,157 9/29/2018
2.5.0 1,631 9/29/2018
2.4.1 1,768 9/27/2018
2.4.0 1,833 9/18/2018
2.3.2 3,166 8/6/2018
2.3.1 2,095 7/20/2018
2.3.0 2,287 7/2/2018
2.2.19 2,353 6/27/2018
2.2.18 2,024 6/25/2018
2.2.17 2,040 6/15/2018
2.2.16 1,928 6/14/2018
2.2.15 5,657 6/7/2018
2.2.14 2,018 6/1/2018
2.2.13 2,314 5/22/2018
2.2.12 3,679 4/20/2018
2.2.11 2,048 4/18/2018
2.2.10 2,428 4/17/2018
2.2.9 2,045 4/6/2018
2.2.8 5,773 11/22/2017
2.2.7 2,116 11/22/2017
2.2.6 2,061 11/21/2017
2.2.5 3,162 11/9/2017
2.2.4 2,036 11/9/2017
2.2.3 2,116 8/25/2017
2.2.2 2,521 5/22/2017
2.2.1 2,096 4/6/2017
2.2.0 1,798 6/5/2016
2.1.1 1,746 5/27/2016
2.0.0 2,420 4/24/2016
1.1.4 1,696 3/31/2016
1.1.3 2,084 3/30/2016
1.1.2 1,856 3/30/2016
1.1.1 2,083 3/29/2016
1.1.0 1,724 3/29/2016
1.0.3 1,909 3/24/2016
1.0.2 1,975 3/23/2016
1.0.1 2,044 3/23/2016
1.0.0 3,033 3/23/2016