Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
0c22635a
Commit
0c22635a
authored
Dec 08, 2015
by
Achilleas Pipinellis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More redis CI example clean up
parent
4ea0f064
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
doc/ci/services/redis.md
doc/ci/services/redis.md
+7
-6
No files found.
doc/ci/services/redis.md
View file @
0c22635a
...
@@ -6,8 +6,8 @@ do this with the Docker and Shell executors of GitLab Runner.
...
@@ -6,8 +6,8 @@ do this with the Docker and Shell executors of GitLab Runner.
## Use Redis with the Docker executor
## Use Redis with the Docker executor
If you are using
GitLab's Runner Docker integration you basically have
If you are using
[
GitLab Runner
](
../runners/README.md
)
with the Docker executor
everything set up already.
you basically have
everything set up already.
First, in your
`.gitlab-ci.yml`
add:
First, in your
`.gitlab-ci.yml`
add:
...
@@ -19,15 +19,15 @@ services:
...
@@ -19,15 +19,15 @@ services:
Then you need to configure your application to use the Redis database, for
Then you need to configure your application to use the Redis database, for
example:
example:
```
bash
```
yaml
Host
:
redis
Host
:
redis
```
```
And that's it. Redis will now be available to be used within your testing
And that's it. Redis will now be available to be used within your testing
framework.
framework.
If you want to use any other version of Redis, check the available versions
You can also use any other docker image available on
[
Docker Hub
][
hub-redis
]
.
on
[
Docker Hub
](
https://hub.docker.com/_/redis/
)
.
For example, to use Redis 2.8 the service becomes
`redis:2.8`
.
## Use Redis with the Shell executor
## Use Redis with the Shell executor
...
@@ -52,7 +52,7 @@ sudo -u gitlab-runner -H redis-cli
...
@@ -52,7 +52,7 @@ sudo -u gitlab-runner -H redis-cli
Finally, configure your application to use the database, for example:
Finally, configure your application to use the database, for example:
```
bash
```
yaml
Host
:
localhost
Host
:
localhost
```
```
...
@@ -65,4 +65,5 @@ that runs on [GitLab.com](https://gitlab.com) using our publicly available
...
@@ -65,4 +65,5 @@ that runs on [GitLab.com](https://gitlab.com) using our publicly available
Want to hack on it? Simply fork it, commit and push your changes. Within a few
Want to hack on it? Simply fork it, commit and push your changes. Within a few
moments the changes will be picked by a public runner and the build will begin.
moments the changes will be picked by a public runner and the build will begin.
[
hub-redis
]:
https://hub.docker.com/_/redis/
[
redis-example-repo
]:
https://gitlab.com/gitlab-examples/redis
[
redis-example-repo
]:
https://gitlab.com/gitlab-examples/redis
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment