skip to Main Content

Docker commands failed in private runners

I set up the runner on Mac through the tutorial and assign the job to it to run. Below is my configuration in .gitlab-ci.yml based on this answer. OPTION 1 image: docker:latest services: - docker:18.09.7-dind OPTION 2 image: name: docker:latest…

VIEW QUESTION

Debian – readlink: unrecognized option: m

I have the following Dockerfile. FROM debian:10.7 ARG DEBIAN_FRONTEND=noninteractive RUN echo "Acquire::http::Proxy "${HTTP_PROXY}";" >> /etc/apt/apt.conf.d/50proxy && echo "Acquire::https::Proxy "${HTTPS_PROXY}";" >> /etc/apt/apt.conf.d/50proxy # Install coreutils, dialog, apt-utils since busybox seems to lack them RUN apt-get update && apt-get install -y coreutils…

VIEW QUESTION

How to check the output of a Java Docker Container?

We have a GitLab Pipeline with the following job which runs inside a Docker Container that has Java installed: generate_openapi_server_code: image: java:17 stage: validate tags: - test script: - "wget https://<artifactory-host-url>/artifactory/Maven-Central-remote-cache/org/openapitools/openapi-generator-cli/6.3.0/openapi-generator-cli-6.3.0.jar -O openapi-generator-cli.jar" - "java -jar openapi-generator-cli.jar generate -g spring…

VIEW QUESTION
Back To Top
Search