skip to Main Content

How to pass environment variable to docker run in gitlab ci cd

I am trying to pass the env variable to my node js docker build image ,while running as shown below stages: - publish - deploy variables: TAG_LATEST: $CI_REGISTRY_IMAGE/$CI_COMMIT_REF_NAME:latest TAG_COMMIT: $CI_REGISTRY_IMAGE/$CI_COMMIT_REF_NAME:$CI_COMMIT_SHORT_SHA publish: image: docker:latest stage: publish services: - docker:dind script: -…

VIEW QUESTION

The connection to service named com.apple.fonts was invalidated on xcodebuild -resolvePackageDependencies

I am using fastlane to build my unity iphone application. It worked perfectly until all of a sudden i started getting the following error/warning during build: [10:13:48]: $ xcodebuild -resolvePackageDependencies -scheme Unity-iPhone -project ./Unity-iPhone.xcodeproj [10:13:48]: ▸ 2021-11-16 10:13:48.903 xcodebuild[59318:1348378] XType:…

VIEW QUESTION

Sbt-native-packager cannot connect to Docker daemon – Debian

Here is my configuration which worked for more than one year but suddenly stopped working. variables: DOCKER_DRIVER: overlay2 DOCKER_TLS_CERTDIR: "" stage: deploy image: "hseeberger/scala-sbt:11.0.9.1_1.4.4_2.13.4" before_script: - apt-get update - apt-get install sudo - apt-get install apt-transport-https ca-certificates curl software-properties-common -y…

VIEW QUESTION
Back To Top
Search