Skip to content

Fs.TestContainers is a wrapper around the fluent builders found in testcontainers-dotnet

License

Notifications You must be signed in to change notification settings

1eyewonder/Fs.TestContainers

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fs.TestContainers (in development)

Fs.TestContainers is a wrapper around the fluent builders found in testcontainers-dotnet. It allows us to create images, containers, etc. using the F# computation expression syntax.

Builds

GitHub Actions
GitHub Actions
Build History

NuGet

Package Stable Prerelease
Fs.TestContainers NuGet Badge NuGet Badge

Examples

let myImage =
  image {
    name "somecoolimage"
    directory "testing"
    dockerfile "Dockerfile"
  }
  |> ImageBuilder.build

let container =
  container {
    image myImage
    commands [| "-t" |]
    autoRemove
  }
  |> ContainerBuilder.build
---



About

Fs.TestContainers is a wrapper around the fluent builders found in testcontainers-dotnet

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published