Alpine linux lightweight, openssl, and openjdk
1.4K
The image is a Linux lightweight, It has been integrated openssl and jdk, image run dumb-init as PID 1 which forwards signals to all processes running in the container. we can use openssl and base running java application.
Image supports version of Java : 7, 8, 9, 10, 11 (lastest)
docker run -itd --name alpine-java-ssl ngacareer/alpine-java-ssl
docker exec -it alpine-java-ssl bin/sh
# java -version
# javac -version
kubectl run alpine-java-ssl --image=ngacareer/alpine-java-ssl
kubectl exec -it pod/alpine-java-ssl bin/sh
# java -version
# javac -version
oc new-app --docker-image=ngacareer/alpine-java-ssl --name=alpine-java-ssl
oc exec -ti $(oc get pod -l app=alpine-java-ssl -o jsonpath="{.items[0].metadata.name}") bin/sh
$ java -version
$ javac -version
Copyright © 2021 Ngacareer
All contents licensed under the MIT License
Content type
Image
Digest
Size
139.2 MB
Last updated
over 5 years ago
docker pull ngacareer/alpine-java-ssl