Created
February 2, 2016 22:19
-
-
Save iolson/9dc7c065a5662a1bbc63 to your computer and use it in GitHub Desktop.
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
[[runners]] | |
url = "https://domain.com/ci" | |
token = "RUNNER TOKEN GOES HERE" | |
tls-skip-verify = false | |
tls-ca-file = "" | |
name = "YOUR RUNNER NAME" | |
executor = "docker" | |
environment = ["MYSQL_ALLOW_EMPTY_PASSWORD=1"] | |
[runners.docker] | |
image = "php:7-fpm" | |
privileged = false | |
volumes = ["/cache"] | |
services = ["mysql:latest", "postgres:latest", "redis:latest", "mongo:latest"] | |
wait_for_services_timeout = 0 | |
allowed_images = ["*", "*/*"] | |
allowed_services = ["*", "*/*"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment