skip to Main Content

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

Access localhost from within a docker image

I have the following .gitlab-ci.yml file : image: python:3.8 variables: PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip" cache: paths: - .cache/pip - venv/ before_script: - python -V # Print out python version for debugging - pip install --upgrade pip - pip install virtualenv - virtualenv…

VIEW QUESTION
Back To Top
Search