Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork55
Lightweight Java Docker client
License
amihaiemil/docker-java-api
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Lightweight, object-oriented, Docker client for Java
A Java library for the Docker Engine API. It is the equivalent of thedocker 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. Readthis blog post andthe wiki for more details.
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 ofJSON-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, gohere.
If you are not using Maven, you can also download thefat jar.
Here is all you need to do in order to pull an Image and run a Container into the local Docker engine:
finalContainerstarted =newUnixDocker(newFile("/var/run/docker.sock")) .images() .pull("hello-world","latest") .run();
or, the same code snippet, less fluent:
finalDockerdocker =newUnixDocker(newFile("/var/run/docker.sock"));finalImagesimages =docker.images();for(finalImageimage :images){//iterate over the existing images}finalImagehelloWorld =images.pull("hello-world","latest");finalContainerstarted =helloWorld.run();
More info in theWiki.
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 sureyou're following our code style and guidlines.
In order to run the integration tests add theitcases 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.
About
Lightweight Java Docker client
Topics
Resources
License
Contributing
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Sponsor this project
Uh oh!
There was an error while loading.Please reload this page.
Packages0
Uh oh!
There was an error while loading.Please reload this page.
Contributors12
Uh oh!
There was an error while loading.Please reload this page.