Created
July 8, 2022 18:22
Revisions
-
nietzscheson created this gist
Jul 8, 2022 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ ### .gitlab-ci.yml image: alpine test: script: - echo "Hello Gitlab-Runner" ### Pull Gitlab Runner image docker run -d \ --name gitlab-runner \ --restart always \ -v $PWD:$PWD \ -v /var/run/docker.sock:/var/run/docker.sock \ gitlab/gitlab-runner:latest ### Execute the step docker exec -it -w $PWD gitlab-runner gitlab-runner exec docker <put_here_step_name>