FluentDocker
FluentDocker copied to clipboard
Use docker, docker-compose local and remote in tests and your .NET core/full framework apps via a FluentAPI
I'm trying to execute some integration tests using a docker-compose file that I'm passing it to the FluentDocker. Locally (windows machine) it works ok because (I assume) I already have...
Is there any plans to support Docker Compose V3? If so, do you have any idea of timeframe for when this may be available?
For now I've managed to select started services like this ``` PropertyInfo finfo = typeof(DockerComposeCompositeService).GetProperty("Config", bindingFlags)!; var config = (DockerComposeConfig)finfo.GetValue(svc); config.Services = config.Services.ArrayAdd("myservice"); Can a fluent service management be added...
I'm not sure if i am wrong, but I couldn't find a wrapper for docker's load functionality for offline usage. Example: docker save --output myimage.tar myimage docker load --input myimage.tar
Ductus.FluentDocker.Common.FluentDockerException : Could not dispose composite service from file(s)
I have some integration tests running on Docker using FluentDocker, version 2.10.59 I am using the NUnit lifecycle to create and destroy instances of a Test Environment. You can see...
Hey, I was wondering if you plan to add support for using profiles?
I'm trying to build my own image, and I want to copy some files onto it. When I use an absolute path, the COPY and ADD commands break. When I...
💡
`:bulb` -> :bulb:
I would like to make changes to a compose file after it has been loaded. Specifically, I would like to change the ports that are exposed by some of the...