[ Web Proxy ]
URL:
Viewing: https://java.testcontainers.org/supported_docker_environment/../../modules/docker_model_runner/ [Back]  [Original]

Docker Model Runner - Testcontainers for Java
Skip to content
Testcontainers [Testcontainers] Menu
testcontainers-java
Content

Docker Model Runner

This module helps connect to Docker Model Runner provided by Docker Desktop 4.40.0.

DockerModelRunner's usage examples

You can start a Docker Model Runner proxy container instance from any Java application by using:

Create a DockerModelRunnerContainer
DockerModelRunnerContainer dmr = new DockerModelRunnerContainer("alpine/socat:1.7.4.3-r0")

Pulling the model

Pulling the model is as simple as:

Pull model
DockerModelRunnerContainer dmr = new DockerModelRunnerContainer("alpine/socat:1.7.4.3-r0")
    .withModel(modelName)

Adding this module to your project dependencies

Docker Model Runner support is part of the core Testcontainers library.

Add the following dependency to your pom.xml/build.gradle file:

GradleMaven
testImplementation "org.testcontainers:testcontainers:2.0.5"
<dependency>
    <groupId>org.testcontainers</groupId>
    <artifactId>testcontainers</artifactId>
    <version>2.0.5</version>
    <scope>test</scope>
</dependency>

Web Proxy Viewer  |  New URL  |  Original Page