Skip to content

Commit

Permalink
bumped to runner v9.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mproucelle committed May 18, 2017
1 parent 80abfc5 commit 6f34339
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

**9.1.1**
- bumped to runner 9.1.1

**1.11.2**
- bumped to runner 1.11.2 and sameersbn/ubuntu:14.04.20170228

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.20170228
MAINTAINER [email protected]

ENV GITLAB_CI_MULTI_RUNNER_VERSION=1.11.2 \
ENV GITLAB_CI_MULTI_RUNNER_VERSION=9.1.1 \
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"
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)

# sameersbn/gitlab-ci-multi-runner:1.11.2
# sameersbn/gitlab-ci-multi-runner:9.1.1

- [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 sameersbn/gitlab-ci-multi-runner:1.11.2
docker pull sameersbn/gitlab-ci-multi-runner:9.1.1
```

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' \
sameersbn/gitlab-ci-multi-runner:1.11.2
sameersbn/gitlab-ci-multi-runner:9.1.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/)*
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'
sameersbn/gitlab-ci-multi-runner:1.11.2
sameersbn/gitlab-ci-multi-runner:9.1.1
```

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'
sameersbn/gitlab-ci-multi-runner:1.11.2
sameersbn/gitlab-ci-multi-runner:9.1.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`.
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 \
sameersbn/gitlab-ci-multi-runner:1.11.2 --help
sameersbn/gitlab-ci-multi-runner:9.1.1 --help
```

## Persistence
Expand Down Expand Up @@ -189,7 +189,7 @@ To upgrade to newer releases:
1. Download the updated Docker image:

```bash
docker pull sameersbn/gitlab-ci-multi-runner:1.11.2
docker pull sameersbn/gitlab-ci-multi-runner:9.1.1
```

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] \
sameersbn/gitlab-ci-multi-runner:1.11.2
sameersbn/gitlab-ci-multi-runner:9.1.1
```

## Shell Access
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.11.2
v9.1.1
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: sameersbn/gitlab-ci-multi-runner:1.11.2
image: sameersbn/gitlab-ci-multi-runner:9.1.1
volumes:
- /srv/docker/gitlab-runner:/home/gitlab_ci_multi_runner/data
environment:
Expand Down

0 comments on commit 6f34339

Please sign in to comment.