A simple image that allow to runs Java 8 code on a 32bit environment
10K+
Simple image for running Java 8 applications on a 32bit based system. Based on toopher/ubuntu-i386/.
Dockerfile can be found on GitHub
To run a Jar file, simply run the docker container with a mounted volume (e.g. /tmp/jar) to /data. First place your jar inside the volume folder, /tmp/jar or whatever you prefer.
mkdir /tmp/jar
cp myapp.jar /tmp/jar
Then run the container with the mounted volume
docker run -i -v /tmp/jar:/data cortinico/java8-32bit java -jar myapp.jar
uname -a
Linux 3bdaab02d295 4.4.0-040400-generic #201601101930 SMP Mon Jan 11 00:32:41 UTC 2016 i686 i686 i386 GNU/Linux
java version "1.8.0_74"
Java(TM) SE Runtime Environment (build 1.8.0_74-b02)
Java HotSpot(TM) Server VM (build 25.74-b02, mixed mode)
Content type
Image
Digest
Size
307.3 MB
Last updated
over 10 years ago
docker pull cortinico/java8-32bit