skip to Main Content

Replace version inside YAML file – Ubuntu

I have this YAML file: openapi: 3.0.0 info: title: Test description: >- This is the official REST API documentation for all available routes provided by the **Test** plugin. version: 2.0.0 servers: - url: https://entwicklungsumgebung components: securitySchemes: basicAuth: type: http Inside…

VIEW QUESTION

How to use nginx(intsalled on docker) reverse proxy gitlab(installed on docker too) – Ubuntu

I installed gitlab according to the official documentation. sudo docker run --detach --hostname git.stupidpz.com --publish 8443:443 --publish 880:80 --publish 822:22 --name gitlab --restart always --volume $GITLAB_HOME/config:/etc/gitlab --volume $GITLAB_HOME/logs:/var/log/gitlab --volume $GITLAB_HOME/data:/var/opt/gitlab --shm-size 256m gitlab/gitlab-ee:latest Now I want to use Nginx(installed By…

VIEW QUESTION

How to install tagged version of image from gitlab container registry? – Docker

Quite simply I'm trying to install version 0.40.2 of Gitlab's terraform-images image - i.e. this https://gitlab.com/gitlab-org/terraform-images/-/tags/v0.40.2 When I try this... docker pull registry.gitlab.com/gitlab-org/terraform-images/stable:0.40.2 I get this error.. Error response from daemon: manifest for registry.gitlab.com/gitlab-org/terraform-images/stable:0.40.2 not found: manifest unknown: manifest unknown…

VIEW QUESTION

Detected dubious ownership in repository GITLAB CI/CD – Docker

I am facing this issue during try to deploy script with gitlab ci/cd: Initialized empty Git repository in C:/builds/Tri.BuiV/test-gitlab-cicd/.git/ fatal: detected dubious ownership in repository at 'C:/builds/Tri.BuiV/test-gitlab-cicd' 'C:/builds/Tri.BuiV/test-gitlab-cicd' is owned by: 'S-1-5-83-1-1989435290-1148643240-1709935003-3943614564' but the current user is: 'S-1-5-93-2-1' To add…

VIEW QUESTION
Back To Top
Search