Skip to content

Commit eb252bb

Browse files
committed
Merge branch '4.5'
2 parents b46b03d + 3c4d49d commit eb252bb

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

docker/elastic.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
version: '3.3'
2+
# Elastic config, to be appended after base-prod or base-dev, ..., but before selenium.yml
3+
#
4+
# NOTE: You'll need to manually run the command: php bin/console ibexa:elasticsearch:put-index-template.
5+
6+
## WARNING!
7+
# This service is currently work in progress, is not tested by CI, and thus not guaranteed to work.
8+
# You are however more then welcome to try it out and help make it stable.
9+
10+
services:
11+
app:
12+
depends_on:
13+
- elasticsearch
14+
environment:
15+
- SEARCH_ENGINE=elasticsearch
16+
- ELASTICSEARCH_DSN=elasticsearch:9200
17+
18+
elasticsearch:
19+
image: docker.elastic.co/elasticsearch/elasticsearch:7.17.18
20+
ports:
21+
- "9200:9200"
22+
- "9300:9300"
23+
environment:
24+
- discovery.type=single-node
25+
networks:
26+
- frontend
27+
- backend

0 commit comments

Comments
 (0)