From de52890614004b07060a4accdec3c809e2fe48d9 Mon Sep 17 00:00:00 2001 From: Israel Shirk Date: Fri, 9 Jun 2017 13:59:22 -0600 Subject: [PATCH 1/4] Update to gitlab ci multi runner 9.2.0 --- Dockerfile | 2 +- README.md | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index e69fada..224bfe3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM sameersbn/ubuntu:14.04.20170110 MAINTAINER sameer@damagehead.com -ENV GITLAB_CI_MULTI_RUNNER_VERSION=1.1.4 \ +ENV GITLAB_CI_MULTI_RUNNER_VERSION=9.2.0 \ 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" diff --git a/README.md b/README.md index 10f8fbe..9963603 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![Docker Repository on Quay.io](https://quay.io/repository/sameersbn/gitlab-ci-multi-runner/status "Docker Repository on Quay.io")](https://quay.io/repository/sameersbn/gitlab-ci-multi-runner) -# sameersbn/gitlab-ci-multi-runner:1.1.4-7 +# sameersbn/gitlab-ci-multi-runner:9.2.0-1 - [Introduction](#introduction) - [Contributing](#contributing) @@ -51,7 +51,7 @@ Automated builds of the image are available on [Dockerhub](https://hub.docker.co > **Note**: Builds are also available on [Quay.io](https://quay.io/repository/sameersbn/gitlab-ci-multi-runner) ```bash -docker pull sameersbn/gitlab-ci-multi-runner:1.1.4-7 +docker pull sameersbn/gitlab-ci-multi-runner:9.2.0-1 ``` Alternatively you can build the image yourself. @@ -69,7 +69,7 @@ docker run --name gitlab-ci-multi-runner -d --restart=always \ --volume /srv/docker/gitlab-runner:/home/gitlab_ci_multi_runner/data \ --env='CI_SERVER_URL=http://git.example.com/ci' --env='RUNNER_TOKEN=xxxxxxxxx' \ --env='RUNNER_DESCRIPTION=myrunner' --env='RUNNER_EXECUTOR=shell' \ - sameersbn/gitlab-ci-multi-runner:1.1.4-7 + sameersbn/gitlab-ci-multi-runner:9.2.0-1 ``` *Alternatively, you can use the sample [docker-compose.yml](docker-compose.yml) file to start the container using [Docker Compose](https://docs.docker.com/compose/)* @@ -83,7 +83,7 @@ You can customize the launch command by specifying arguments to `gitlab-ci-multi ```bash docker run --name gitlab-ci-multi-runner -it --rm \ --volume /srv/docker/gitlab-runner:/home/gitlab_ci_multi_runner/data \ - sameersbn/gitlab-ci-multi-runner:1.1.4-7 --help + sameersbn/gitlab-ci-multi-runner:9.2.0-1 --help ``` ## Persistence @@ -131,7 +131,7 @@ To upgrade to newer releases: 1. Download the updated Docker image: ```bash - docker pull sameersbn/gitlab-ci-multi-runner:1.1.4-7 + docker pull sameersbn/gitlab-ci-multi-runner:9.2.0-1 ``` 2. Stop the currently running image: @@ -151,7 +151,7 @@ To upgrade to newer releases: ```bash docker run -name gitlab-ci-multi-runner -d \ [OPTIONS] \ - sameersbn/gitlab-ci-multi-runner:1.1.4-7 + sameersbn/gitlab-ci-multi-runner:9.2.0-1 ``` ## Shell Access From 6cef1aaba8e1a2c45673610e40760b43f7d7284d Mon Sep 17 00:00:00 2001 From: Israel Shirk Date: Fri, 30 Jun 2017 15:38:51 -0600 Subject: [PATCH 2/4] Update to v9.3.0 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 224bfe3..878f7fd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM sameersbn/ubuntu:14.04.20170110 MAINTAINER sameer@damagehead.com -ENV GITLAB_CI_MULTI_RUNNER_VERSION=9.2.0 \ +ENV GITLAB_CI_MULTI_RUNNER_VERSION=9.3.0 \ 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" From 7723c6f9f848697b490d9ca14b384086e624b92f Mon Sep 17 00:00:00 2001 From: Israel Shirk Date: Fri, 30 Jun 2017 15:44:25 -0600 Subject: [PATCH 3/4] Use latest of sameersbn ubuntu --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 878f7fd..1b6d537 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM sameersbn/ubuntu:14.04.20170110 +FROM sameersbn/ubuntu:latest MAINTAINER sameer@damagehead.com ENV GITLAB_CI_MULTI_RUNNER_VERSION=9.3.0 \ From 15ab297859d1284e9f83d81be1c68c8bb95f2b57 Mon Sep 17 00:00:00 2001 From: Israel Shirk Date: Thu, 6 Jul 2017 13:00:44 -0600 Subject: [PATCH 4/4] Update to 9.3.0-1 --- Dockerfile | 2 +- Makefile | 4 ++-- VERSION | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1b6d537..2b2e3a7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM sameersbn/ubuntu:latest -MAINTAINER sameer@damagehead.com +MAINTAINER ishirk@zerrtech.com ENV GITLAB_CI_MULTI_RUNNER_VERSION=9.3.0 \ GITLAB_CI_MULTI_RUNNER_USER=gitlab_ci_multi_runner \ diff --git a/Makefile b/Makefile index ead943e..5709d3a 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ all: build build: - @docker build --tag=sameersbn/gitlab-ci-multi-runner . + @docker build --tag=zerrtech/gitlab-ci-multi-runner . release: build - @docker build --tag=sameersbn/gitlab-ci-multi-runner:$(shell cat VERSION) . + @docker build --tag=zerrtech/gitlab-ci-multi-runner:$(shell cat VERSION) . diff --git a/VERSION b/VERSION index 8bc74c6..db46a70 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.1.4-7 +9.3.0-1