-
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.
- Loading branch information
Showing
1 changed file
with
27 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,27 @@ | ||
version: '3.3' | ||
# Elastic config, to be appended after base-prod or base-dev, ..., but before selenium.yml | ||
# | ||
# NOTE: You'll need to manually run the command: php bin/console ibexa:elasticsearch:put-index-template. | ||
|
||
## WARNING! | ||
# This service is currently work in progress, is not tested by CI, and thus not guaranteed to work. | ||
# You are however more then welcome to try it out and help make it stable. | ||
|
||
services: | ||
app: | ||
depends_on: | ||
- elasticsearch | ||
environment: | ||
- SEARCH_ENGINE=elasticsearch | ||
- ELASTICSEARCH_DSN=elasticsearch:9200 | ||
|
||
elasticsearch: | ||
image: docker.elastic.co/elasticsearch/elasticsearch:7.17.18 | ||
ports: | ||
- "9200:9200" | ||
- "9300:9300" | ||
environment: | ||
- discovery.type=single-node | ||
networks: | ||
- frontend | ||
- backend |