forked from sameersbn/docker-gitlab-ci-multi-runner
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bumped to 1.9.3 and added support of RUNNER_OUTPUT_LIMIT
- Loading branch information
1 parent
688b056
commit 974e3f2
Showing
4 changed files
with
32 additions
and
2 deletions.
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 characters
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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,32 @@ | ||
FROM ubuntu:xenial | ||
MAINTAINER [email protected] | ||
|
||
|
||
RUN echo 'APT::Install-Recommends 0;' >> /etc/apt/apt.conf.d/01norecommends \ | ||
&& echo 'APT::Install-Suggests 0;' >> /etc/apt/apt.conf.d/01norecommends \ | ||
&& apt-get update \ | ||
&& DEBIAN_FRONTEND=noninteractive apt-get install -y \ | ||
vim.tiny wget sudo net-tools ca-certificates unzip git openssh-client curl libapparmor1 | ||
|
||
ENV GITLAB_CI_MULTI_RUNNER_VERSION=1.9.0 \ | ||
ENV GITLAB_CI_MULTI_RUNNER_VERSION=1.9.3 \ | ||
GITLAB_CI_MULTI_RUNNER_USER=gitlab_ci_multi_runner \ | ||
GITLAB_CI_MULTI_RUNNER_HOME_DIR="/home/gitlab_ci_multi_runner" | ||
ENV GITLAB_CI_MULTI_RUNNER_DATA_DIR="${GITLAB_CI_MULTI_RUNNER_HOME_DIR}/data" | ||
|
||
ENV CA_CERTIFICATES_PATH='' | ||
ENV RUNNER_CONCURRENT='' | ||
ENV CI_SERVER_URL='' | ||
ENV RUNNER_TOKEN='' | ||
ENV RUNNER_EXECUTOR='docker' | ||
ENV RUNNER_DESCRIPTION='' | ||
|
||
ENV RUNNER_DOCKER_IMAGE='docker:latest' | ||
ENV RUNNER_DOCKER_MODE='socket' | ||
ENV RUNNER_DOCKER_PRIVATE_REGISTRY_URL='' | ||
ENV RUNNER_DOCKER_PRIVATE_REGISTRY_TOKEN='' | ||
ENV RUNNER_DOCKER_ADDITIONAL_VOLUME='' | ||
ENV RUNNER_OUTPUT_LIMIT='4096' | ||
|
||
RUN wget -O /usr/local/bin/gitlab-ci-multi-runner \ | ||
https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/v${GITLAB_CI_MULTI_RUNNER_VERSION}/binaries/gitlab-ci-multi-runner-linux-amd64 \ | ||
&& chmod 0755 /usr/local/bin/gitlab-ci-multi-runner \ | ||
|
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 characters
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 characters