在准备好部署一切后,我意识到JHipster
不再有 Dockerfile,并且打包是用jib
完成的。生成的gitlab-ci.yml
有一个 docker 推送阶段,其中包含如下命令:
./mvnw jib:build -Djib.to.image=$IMAGE_TAG -Djib.to.auth.username=gitlab-ci-token -Djib.to.auth.password=$CI_BUILD_TOKEN
但它失败了
[ERROR] Failed to execute goal com.google.cloud.tools:jib-maven-plugin:0.9.11:build (default-cli) on project test-project: Obtaining project build output files failed; make sure you have compiled your project before trying to build the image. (Did you accidentally run "mvn clean jib:build" instead of "mvn clean compile jib:build"?): /builds/amatos/test-project/target/classes -> [Help 1]
由于失败,我尝试在本地运行命令,如下所示:
./mvnw jib:build -Djib.to.image=registry.gitlab.com/amatos/test-project:v6.0.1 -Djib.to.auth.username=amatos -Djib.to.auth.password=password
但它不是尝试连接到 Gitlab 的注册表,而是尝试连接到 registry.hub.docker.com:
[INFO] Retrieving registry credentials for registry.hub.docker.com...
我想知道的是:如何设置它以连接到 Gitlab 而不是 Docker Hub?
连接到自定义存储库,我将-Djib.to.image
更改为-Dimage
并且它有效
接下来是 jhipster/generator-jhipster 问题 9761,其中指出:
由于
docker-push
是在另一个阶段完成的,因此缺少 -target/classes
在前一阶段。
jib
需要它.它应如下所示:
maven-package:
stage: package
script:
- ./mvnw verify -Pprod -DskipTests -Dmaven.repo.local=$MAVEN_USER_HOME
artifacts:
paths:
- target/*.jar
- target/classes
expire_in: 1 day
可能由 PR(合并(9762 解决,提交 50cc009,它仅在 master 中,尚未被任何标签引用。