From 2c0404f82f9e6aaf8a7c7952a376ef2ca108f6ab Mon Sep 17 00:00:00 2001 From: jurgenhaas <juergen@paragon-es.de> Date: Tue, 12 Jan 2021 13:21:39 +0100 Subject: [PATCH] Move readme to devops tools doc --- README.md | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 README.md diff --git a/README.md b/README.md deleted file mode 100644 index 453dc71..0000000 --- a/README.md +++ /dev/null @@ -1,37 +0,0 @@ -# Usage - -Register a runner with GitLab Runner and configure it like this: - -``` -[[runners]] - name = "DrupalCI" - url = "https://your.gitlab.url/" - token = "..." - executor = "docker" - [runners.docker] - tls_verify = false - image = "registry.lakedrops.com/docker/gitlab-drupal-ci:php-7.2" - privileged = true - disable_entrypoint_overwrite = false - oom_kill_disable = false - disable_cache = false - volumes = ["/var/run/docker.sock:/var/run/docker.sock", "/cache"] - shm_size = 0 - [runners.cache] - [runners.cache.s3] - [runners.cache.gcs] -``` - -# Node version - -When using node from within this framework, this defaults to version `12-stretch-slim` but you can change the default version by setting the environment variable `NODE_VERSION` to one of these tags: - -- 8-jessie-slim -- 10-jessie-slim -- 12-stretch-slim -- 13-stretch-slim - -# Credit - -- [Image from jonaskello](https://github.com/jonaskello/docker-and-compose) -- [Alpine glibc from sgerrand](https://github.com/sgerrand/alpine-pkg-glibc) -- GitLab