This is docker images of Ubuntu (14.04 and 16.04 LTS) with different versions of java
This images are build on nimmis/ubuntu which are a modified version of ubuntu with a working init process, fixes for some docker bugs and a working cron and syslog. Services are started with supervisor daemon, for more information about that see nimmis/ubuntu
On request I have recreated the old 14.04 versions with prefix 14.04- See TAGS for a full list
docker run -ti nimmis/java:openjdk-7-jdk /bin/bash
This will start the container with a normal shell, no cron or other systems are started
docker run -d nimmis/java:openjdk-7-jdk
This will start the container with the init process running, access the container with
docker exec -ti <container ID> /bin/bash
If you have any problems with or questions about this image, please contact us by submitting a ticket through a GitHub issue
- Look to see if someone already filled the bug, if not add a new one.
- Add a good title and description with the following information.
- if possible an copy of the output from cat /etc/BUILDS/* from inside the container
- any logs relevant for the problem
- how the container was started (flags, environment variables, mounted volumes etc)
- any other information that can be helpful
You are invited to contribute new features, fixes, or updates, large or small; we are always thrilled to receive pull requests, and do our best to process them as fast as we can.
The different version is determined with the TAG
The available version are nimmis/java:< tag > where tag is
Example to run a container with OpenJDK version 7 JDK
docker run -d nimmis/java:openjdk-7-jdk