Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

docker run gitlab runner

   docker run -d --name gitlab-runner --restart always 
     -v /srv/gitlab-runner/config:/etc/gitlab-runner 
     -v /var/run/docker.sock:/var/run/docker.sock 
     gitlab/gitlab-runner:latest
    
Comment

gitlab runner on docker

docker run -d --name gitlab-runner --restart always 
     -v /srv/gitlab-runner/config:/etc/gitlab-runner 
     -v /var/run/docker.sock:/var/run/docker.sock 
     gitlab/gitlab-runner:latest
# Now run config:
docker exec -it gitlab-runner gitlab-runner register --docker-privileged
Comment

gitlab docker runner

docker run --rm -t -i gitlab/gitlab-runner --help

NAME:
   gitlab-runner - a GitLab Runner

USAGE:
   gitlab-runner <global options> command <command options> <arguments...>

VERSION:
   10.7.0 (7c273476)

(...)
Comment

Gitlab docker runner installation

sudo docker run -d --name gitlab-runner --restart always 
  -v /srv/gitlab-runner/config:/etc/gitlab-runner 
  -v /var/run/docker.sock:/var/run/docker.sock 
  gitlab/gitlab-runner:latest
Comment

PREVIOUS NEXT
Code Example
Shell :: connect terminal to server 
Shell :: npm supertest 
Shell :: install node on fish shell 
Shell :: uname 
Shell :: signing key android 
Shell :: sed replace with newline 
Shell :: give sudo permission to vim ubuntu 
Shell :: delete file with cmd 
Shell :: creat a new repository 
Shell :: what is a shebang line 
Shell :: install flutter 
Shell :: git flow feature 
Shell :: delete remote git tags matching pattern 
Shell :: yarn install package 
Shell :: write in a file linux 
Shell :: what is for ubuntu debian or rpm 
Shell :: cor installation 
Shell :: Building without Cython. Error: Please make sure the libxml2 and libxslt development packages are installed. 
Shell :: uninstalling vscode for centos 8 
Shell :: remove image docker 
Shell :: files 644 folders 755 
Shell :: how to downoad website using httrack in kali linux 
Shell :: where to find project ip adress oon jenkins 
Shell :: create a ew remote tracking branch 
Shell :: awk pdb format 
Shell :: logger command to remote syslog 
Shell :: YAML - Basic Cheatsheet 
Shell :: skript tuske gui 
Shell :: unzip mac terminal 
Shell :: ssh set owner recursive 
ADD CONTENT
Topic
Content
Source link
Name
3+9 =