All Projects → amihaiemil → Docker Java Api

amihaiemil / Docker Java Api

Licence: bsd-3-clause
Lightweight Java Docker client

Programming Languages

java
68154 projects - #9 most used programming language

Labels

docker-java-api

Managed by Zerocrat

Build Status Coverage Status Hits-of-Code

Donate via Zerocracy DevOps By Rultor.com We recommend IntelliJ IDEA

Lightweight, object-oriented, Docker client for Java

A Java library for the Docker Engine API. It is the equivalent of the docker command-line client, for Java applications.

Unlike other docker clients for Java, this one aims to be as lightweight as possible, with as few transitive dependencies as possible and it should cause absolutely no runtime conflicts with other frameworks or platforms like Java EE.

Another target is that this library should be a true API, not an SDK. Read this blog post and the wiki for more details.

Maven dependency

The library comes as a maven dependency:

<dependency>
    <groupId>com.amihaiemil.web</groupId>
    <artifactId>docker-java-api</artifactId>
    <version>0.0.13</version>
</dependency>

In order for it to work, you need to have an implementation of JSON-P (JSR 374) in your classpath (it doesn't come transitively since most people are using Java EE APIs so, chances are it is already provided!). If you have no idea what this means, go here.

If you are not using Maven, you can also download the fat jar.

Usage Example And Wiki

Here is all you need to do in order to pull an Image and run a Container into the local Docker engine:

final Container started = new UnixDocker(new File("/var/run/docker.sock"))
    .images()
    .pull("hello-world", "latest")
    .run();

or, the same code snippet, less fluent:

final Docker docker = new UnixDocker(new File("/var/run/docker.sock"));
final Images images = docker.images();
for(final Image image : images){
//iterate over the existing images
}
final Image helloWorld = images.pull("hello-world", "latest");
final Container started = helloWorld.run();

More info in the Wiki.

Contributing

If you would like to contribute, just open an issue or a PR.

Make sure the maven build:

$mvn clean install -Pcheckstyle

passes before making a PR. Checkstyle will make sure you're following our code style and guidlines.

Running Integration Tests

In order to run the integration tests add the itcases profile to the maven command:

$mvn clean install -Pcheckstyle -Pitcases

Docker has to be installed and the ubuntu:latest image should be pulled on the machine, with the default configuration, in order for the IT cases to work.

Stargazers over time

Stargazers over time

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].