GitLab Problems – Debian
I have my own instance of GitLab running on a server. I noticed that GitLab uses Nginx as a server but our web apps run on Apache, so I set up Apache alongside it and it was running great. I…
I have my own instance of GitLab running on a server. I noticed that GitLab uses Nginx as a server but our web apps run on Apache, so I set up Apache alongside it and it was running great. I…
I am new to this, but I enherited a project, where runtime build is created with dockerfile and commands like this: # Build runtime image FROM microsoft/dotnet:2.2-aspnetcore-runtime-alpine RUN echo "http://dl-4.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories; RUN apk update && apk add libgdiplus RUN…
I am trying to clone a flutter project in Android Studio, but unfortunately, Once I add the Git Url and hit clone button, It shows me processing dialog and after just 2 seconds it closed and showing me error as…
I really confused by target /path/to/directory is not a directory when i want to copying all files in build/* to the direction in by this rule in gitlab-ci.yml file: script: - cp -rf build/* /path/to/directory I've also check this command…
I have this .gitlab-ci.yml file content like: .install-pre-reqs: &install-pre-reqs image: ubuntu:20.04 before_script: - apt-get update -y - apt-get upgrade -y - apt-get install -y zip unzip curl fastjar - chmod +x deploy.sh test: <<: *install-pre-reqs stage: test script: - echo…
I am working on a script aggregating all job traces from pipeline’s jobs. My goal is to: Send traces to Graylog server Save job traces locally to make them accessible from the machine in case of Graylog shutdown. My first…
I have installed a Gitlab server (15.1) and try to finalize configuration for my user. I am able to connect with ssh to the server for administration purpose.with my user. I use rsa key pair for that. I connect on…
Hi guys need some help. I created a custom docker image and push it to docker hub but when I run it in CI/CD it gives me this error. exec /usr/bin/sh: exec format error Where : Dockerfile FROM ubuntu:20.04 RUN…
I set up a Windows GitLab runner that's supposed to download a Docker image from our Container Registry and then run a build script in the pipeline. Unfortunately the Docker container never launches due to the following error: Running with…
I'm trying to build then push image on gitlab container registry but i found below issue i'm using on premise Gitlab instance and the Gitlab runner is ubuntu that using shell executor I appreciate if someone can help to solve…