This file contains hidden or 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 characters
| #!/bin/bash | |
| ## Install GitLab Runner on Ubuntu 16.04 | |
| ## https://docs.gitlab.com/runner/install/linux-manually.html | |
| ## Config do Runner /etc/gitlab-runner/config.toml | |
| ## Para registrar e usar uma CA auto assinada | |
| ## gitlab-runner register --tls-ca-file="/home/gitlab-runner/data/certs/ca.crt" | |
| ## Install Docker | |
| apt-get update | |
| apt-get upgrade |