diff --git a/Changelog.md b/Changelog.md index 71e873f..91ddd60 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,8 @@ # Changelog +**11.3.1** + - bumped to runner 11.3.1 + **11.3.0** - bumped to runner 11.3.0 diff --git a/Dockerfile b/Dockerfile index 137afad..8e8ea10 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM sameersbn/ubuntu:14.04.20180124 MAINTAINER sameer@damagehead.com -ENV GITLAB_RUNNER_VERSION=11.3.0 \ +ENV GITLAB_RUNNER_VERSION=11.3.1 \ GITLAB_RUNNER_USER=gitlab_runner \ GITLAB_RUNNER_HOME_DIR="/home/gitlab_runner" ENV GITLAB_RUNNER_DATA_DIR="${GITLAB_RUNNER_HOME_DIR}/data" diff --git a/README.md b/README.md index cceb1ee..207309b 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) -# digitallumberjack/docker-gitlab-ci-multi-runner:v11.3.0 +# digitallumberjack/docker-gitlab-ci-multi-runner:v11.3.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 digitallumberjack/docker-gitlab-ci-multi-runner:v11.3.0 +docker pull digitallumberjack/docker-gitlab-ci-multi-runner:v11.3.1 ``` Alternatively you can build the image yourself. @@ -71,7 +71,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' \ - digitallumberjack/docker-gitlab-ci-multi-runner:v11.3.0 + digitallumberjack/docker-gitlab-ci-multi-runner:v11.3.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/)* @@ -109,7 +109,7 @@ docker run --name gitlab-ci-multi-runner -d --restart=always \ --env='CI_SERVER_URL=http://git.example.com/ci' --env='RUNNER_TOKEN=xxxxxxxxx' \ --env='RUNNER_DESCRIPTION=myrunner' --env='RUNNER_EXECUTOR=docker' \ --env='RUNNER_DOCKER_IMAGE=docker:latest' --env='RUNNER_DOCKER_MODE=socket' - digitallumberjack/docker-gitlab-ci-multi-runner:v11.3.0 + digitallumberjack/docker-gitlab-ci-multi-runner:v11.3.1 ``` Start the docker runner in dind mode : @@ -120,7 +120,7 @@ docker run --name gitlab-ci-multi-runner -d --restart=always \ --env='CI_SERVER_URL=http://git.example.com/ci' --env='RUNNER_TOKEN=xxxxxxxxx' \ --env='RUNNER_DESCRIPTION=myrunner' --env='RUNNER_EXECUTOR=docker' \ --env='RUNNER_DOCKER_IMAGE=docker:latest' --env='RUNNER_DOCKER_MODE=dind' - digitallumberjack/docker-gitlab-ci-multi-runner:v11.3.0 + digitallumberjack/docker-gitlab-ci-multi-runner:v11.3.1 ``` If you want to share volumes between your containers and the runner in socket mode, use the `RUNNER_DOCKER_ADDITIONAL_VOLUME` variable to share `/builds:/builds`. @@ -141,7 +141,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 \ - digitallumberjack/docker-gitlab-ci-multi-runner:v11.3.0 --help + digitallumberjack/docker-gitlab-ci-multi-runner:v11.3.1 --help ``` ## Persistence @@ -189,7 +189,7 @@ To upgrade to newer releases: 1. Download the updated Docker image: ```bash - docker pull digitallumberjack/docker-gitlab-ci-multi-runner:v11.3.0 + docker pull digitallumberjack/docker-gitlab-ci-multi-runner:v11.3.1 ``` 2. Stop the currently running image: @@ -209,7 +209,7 @@ To upgrade to newer releases: ```bash docker run -name gitlab-ci-multi-runner -d \ [OPTIONS] \ - digitallumberjack/docker-gitlab-ci-multi-runner:v11.3.0 + digitallumberjack/docker-gitlab-ci-multi-runner:v11.3.1 ``` ## Shell Access diff --git a/VERSION b/VERSION index ba3878f..a73b08a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v11.3.0 +v11.3.1 diff --git a/docker-compose.yml b/docker-compose.yml index 476d557..e3b2a5e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,5 +1,5 @@ GitlabCIMultiRunner: - image: digitallumberjack/docker-gitlab-ci-multi-runner:v11.3.0 + image: digitallumberjack/docker-gitlab-ci-multi-runner:v11.3.1 volumes: - /srv/docker/gitlab-runner:/home/gitlab_ci_multi_runner/data environment: