I have the following config:
image: java:10
pipelines:
default:
- step:
caches:
- gradle
script:
- bash ./gradlew build
And I get:
rpc error: code = Unknown desc = Error response from daemon: manifest for java:10 not found
Is java 10 not supported ? How can I find the list of supported versions ? What can I do if I need an unsupported version ?
Thanks and regards
Peter
Hi @pvittali
You can check dockerhub to see what images are available. For your case, you can see that java is actually deprecated https://hub.docker.com/_/java/, and the recommended image is openjdk https://hub.docker.com/_/openjdk/.
Hope this helps!
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.