-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdocker-compose.dev-opensearch.yml
More file actions
46 lines (41 loc) · 1.07 KB
/
docker-compose.dev-opensearch.yml
File metadata and controls
46 lines (41 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
version: "3.7"
services:
scrapy-puppeteer-service:
build: .
cap_add:
- SYS_ADMIN
ports:
- "3000:3000"
environment:
TIMEOUT: 60000
LOGSTASH_HOST: logstash
LOGSTASH_PORT: 9001
volumes:
- ./wait_for_logstash.sh:/app/wait_for_logstash.sh
depends_on:
- logstash
command: [ "sh", "-c", "./wait_for_logstash.sh && yarn start" ]
logstash:
image: opensearchproject/logstash-oss-with-opensearch-output-plugin:7.16.3
ports:
- "9001:9001"
- "9600:9600"
volumes:
- ./logstash/pipeline:/usr/share/logstash/pipeline:ro
depends_on:
- opensearch
opensearch:
image: opensearchproject/opensearch:2.10.0
ports:
- "9200:9200"
environment:
- discovery.type=single-node
- plugins.security.ssl.http.enabled=false
- DISABLE_SECURITY_PLUGIN=true
dashboards:
image: opensearchproject/opensearch-dashboards:2.10.0
ports:
- "5601:5601"
environment:
OPENSEARCH_HOSTS: http://opensearch:9200
DISABLE_SECURITY_DASHBOARDS_PLUGIN: "true"