testcontainers
No long description provided.
Installation
dagger install github.com/vito/daggerverse/testcontainers@65af9ad7cb8c38684445a1aef94917dd1a72eb1e
Entrypoint
Return Type
Testcontainers
Example
func (m *myModule) example() *Testcontainers {
return dag.
Testcontainers()
}
Types
Testcontainers 🔗
docker() 🔗
Return Type
Service !
Example
func (m *myModule) example() {
return dag.
Testcontainers().
Docker()
}
withDocker() 🔗
WithDocker allows you to override the Docker daemon used by Testcontainers.
Return Type
Testcontainers !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
docker | Service ! | - | No description provided |
Example
func (m *myModule) example(docker ) {
return dag.
Testcontainers().
WithDocker(docker)
}
dockerService() 🔗
DockerService exposes the Docker service so that you can start it before running a bunch of test suites, keeping it around across the full run even if there is excessive idle time due to load.
Return Type
Service !
Example
func (m *myModule) example() {
return dag.
Testcontainers().
DockerService()
}
setup() 🔗
Setup attaches a Docker daemon to the container and points Testcontainers to it.
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
ctr | Container ! | - | No description provided |
Example
func (m *myModule) example(ctr ) {
return dag.
Testcontainers().
Setup(ctr)
}