-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from continuousphp/feat/containers-rabbitmq-el…
…astic Adding new containers ElasticSearch & RabbitMQ
- Loading branch information
Showing
3 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
layout: doc | ||
title: "ElasticSearch - Documentation" | ||
category: "queues" | ||
order: 1 | ||
excerpt: "ElasticSearch support by continuousphp" | ||
--- | ||
[ElasticSearch](https://github.com/elastic/elasticsearch) is supported by continuousphp. | ||
|
||
## Specification | ||
|
||
ElasticSearch containers are available for each activity in your build. To enable one of them, simply add the environment | ||
variable `CPHP_SERVICE_ELASTICSEARCH` with the desired ElasticSearch version as value to your pipeline configuration. Available versions are : | ||
|
||
* ***6.2.4*** | ||
* ***5.6.9*** | ||
|
||
E.g. if you need `ElasticSearch 6.2.4` in your Behat tests, go to the Testing Settings (step 2 of the Pipeline) and add the | ||
environment variable `CPHP_SERVICE_ELASTICSEARCH = 6.2.4` to the Behat configuration. | ||
|
||
## Connecting to elasticsearch | ||
|
||
<table> | ||
<tr> | ||
<td>Host</td><td>elasticsearch</td> | ||
</tr> | ||
<tr> | ||
<td>Port</td><td>9200</td> | ||
</tr> | ||
</table> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
layout: doc | ||
title: "RabbitMQ - Documentation" | ||
category: "queues" | ||
order: 1 | ||
excerpt: "RabbitMQ support by continuousphp" | ||
--- | ||
[RabbitMQ](https://github.com/rabbitmq) is supported by continuousphp. | ||
|
||
## Specification | ||
|
||
RabbitMQ containers are available for each activity in your build. To enable one of them, simply add the environment | ||
variable `CPHP_SERVICE_RABBITMQ` with the desired RabbitMQ version as value to your pipeline configuration. Available versions are : | ||
|
||
* ***3.7.5*** | ||
|
||
E.g. if you need `RabbitMQ 3.7.5` in your Behat tests, go to the Testing Settings (step 2 of the Pipeline) and add the | ||
environment variable `CPHP_SERVICE_RABBITMQ = 3.7.5` to the Behat configuration. | ||
|
||
## Connecting to elasticsearch | ||
|
||
<table> | ||
<tr> | ||
<td>Host</td><td>rabbitmq</td> | ||
</tr> | ||
<tr> | ||
<td>Port</td><td>15672</td> | ||
</tr> | ||
</table> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters