Skip to content

Commit

Permalink
upgrade 11.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jrmyy committed Apr 5, 2019
1 parent 267d522 commit ebd31fc
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 11 deletions.
3 changes: 3 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

**11.9.0**
- bumped to runner 11.9.0

**11.3.1**
- bumped to runner 11.3.1

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM sameersbn/ubuntu:14.04.20180124
MAINTAINER [email protected]

ENV GITLAB_RUNNER_VERSION=11.3.1 \
ENV GITLAB_RUNNER_VERSION=11.9.0 \
GITLAB_RUNNER_USER=gitlab_runner \
GITLAB_RUNNER_HOME_DIR="/home/gitlab_runner"
ENV GITLAB_RUNNER_DATA_DIR="${GITLAB_RUNNER_HOME_DIR}/data"
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.1
# digitallumberjack/docker-gitlab-ci-multi-runner:v11.9.0

- [Introduction](#introduction)
- [Contributing](#contributing)
Expand Down Expand Up @@ -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.1
docker pull digitallumberjack/docker-gitlab-ci-multi-runner:v11.9.0
```

Alternatively you can build the image yourself.
Expand All @@ -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.1
digitallumberjack/docker-gitlab-ci-multi-runner:v11.9.0
```

*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/)*
Expand Down Expand Up @@ -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.1
digitallumberjack/docker-gitlab-ci-multi-runner:v11.9.0
```

Start the docker runner in dind mode :
Expand All @@ -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.1
digitallumberjack/docker-gitlab-ci-multi-runner:v11.9.0
```

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`.
Expand All @@ -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.1 --help
digitallumberjack/docker-gitlab-ci-multi-runner:v11.9.0 --help
```

## Persistence
Expand Down Expand Up @@ -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.1
docker pull digitallumberjack/docker-gitlab-ci-multi-runner:v11.9.0
```

2. Stop the currently running image:
Expand All @@ -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.1
digitallumberjack/docker-gitlab-ci-multi-runner:v11.9.0
```

## Shell Access
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v11.3.1
v11.9.0
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GitlabCIMultiRunner:
image: digitallumberjack/docker-gitlab-ci-multi-runner:v11.3.1
image: digitallumberjack/docker-gitlab-ci-multi-runner:v11.9.0
volumes:
- /srv/docker/gitlab-runner:/home/gitlab_ci_multi_runner/data
environment:
Expand Down

0 comments on commit ebd31fc

Please sign in to comment.