Skip to content
Advertisement

Tag: gitlab-ci

Gitlab-ci docker inside java image

To use a integration test library https://www.testcontainers.org/” I need a image with java a docker installed at same time. I’m trying o use this stage: But It does not work: Any help? Answer The image gradle:jdk16 does not include the docker client. You’ll have to install it in your job. Additionally, you’ll need to use the service docker:dind in your

Trying to run Firestore emulator on Gitlab CI pipeline gives “java is not installed” error

When trying to run Firestore emulator in a Gitlab CI/CD pipeline I get the following error: Firestore Emulator has exited because java is not installed, you can install it from https://openjdk.java.net/install/ The question is, how do I install java in this env? I found a similar post, but there’s no mention of the need of installing java, so I’m wondering

Advertisement