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!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.