debian-mirror-gitlab/doc/ci/services/README.md

22 lines
727 B
Markdown
Raw Normal View History

2018-03-17 18:26:18 +05:30
---
2020-06-23 00:09:42 +05:30
stage: Verify
group: Runner
2021-02-22 17:27:13 +05:30
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
2018-03-17 18:26:18 +05:30
comments: false
2019-09-04 21:01:54 +05:30
type: index
2018-03-17 18:26:18 +05:30
---
2019-09-04 21:01:54 +05:30
# GitLab CI services examples
2015-12-23 02:04:40 +05:30
2019-09-04 21:01:54 +05:30
The [`services`](../docker/using_docker_images.md#what-is-a-service)
keyword defines a Docker image that runs during a `job` linked to the
Docker image that the image keyword defines. This allows you to access
the service image during build time.
The service image can run any application, but the most common use
case is to run a database container, for example:
2015-12-23 02:04:40 +05:30
2016-06-02 11:05:42 +05:30
- [Using MySQL](mysql.md)
- [Using PostgreSQL](postgres.md)
- [Using Redis](redis.md)