Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/amihaiemil/docker-java-api

Lightweight Java Docker client
https://github.com/amihaiemil/docker-java-api

docker docker-client docker-java-api elegantobjects java-8 oop-library

Last synced: 13 days ago
JSON representation

Lightweight Java Docker client

Awesome Lists containing this project

README

        

### docker-java-api

[![Managed by Zerocrat](https://www.0crat.com/badge/G6LPQQV2P.svg)](https://www.0crat.com/p/G6LPQQV2P)

[![Build Status](https://travis-ci.org/amihaiemil/docker-java-api.svg?branch=master)](https://travis-ci.org/amihaiemil/docker-java-api)
[![Coverage Status](https://coveralls.io/repos/github/amihaiemil/docker-java-api/badge.svg?branch=master)](https://coveralls.io/github/amihaiemil/docker-java-api?branch=master)
[![Hits-of-Code](https://hitsofcode.com/github/amihaiemil/docker-java-api)](https://hitsofcode.com/view/github/amihaiemil/docker-java-api)

[![Donate via Zerocracy](https://www.0crat.com/contrib-badge/G6LPQQV2P.svg)](https://www.0crat.com/contrib/G6LPQQV2P)
[![DevOps By Rultor.com](http://www.rultor.com/b/amihaiemil/docker-java-api)](http://www.rultor.com/p/amihaiemil/docker-java-api)
[![We recommend IntelliJ IDEA](http://amihaiemil.github.io/images/intellij-idea-recommend.svg)](https://www.jetbrains.com/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](http://www.amihaiemil.com/2018/03/10/java-api-for-docker.html) blog post and [the wiki](https://github.com/amihaiemil/docker-java-api/wiki) for more details.

### Maven dependency

The library comes as a maven dependency:

```xml

com.amihaiemil.web
docker-java-api
0.0.13

```

**In order for it to work, you need to have an implementation of [JSON-P (JSR 374)](https://javaee.github.io/jsonp/index.html) 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](https://github.com/amihaiemil/docker-java-api/wiki/What-It-Is#implementation).**

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:

```java
final Container started = new UnixDocker(new File("/var/run/docker.sock"))
.images()
.pull("hello-world", "latest")
.run();
```
or, the same code snippet, less fluent:
```java
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](https://github.com/amihaiemil/docker-java-api/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](http://checkstyle.sourceforge.net/) 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](https://starchart.cc/amihaiemil/docker-java-api.svg)](https://starchart.cc/amihaiemil/docker-java-api)