Skip to content

Commit 18053b9

Browse files
JakobMiesnerkpsherva
authored andcommitted
docker: add opensearch-dashboards container
1 parent d64fdcd commit 18053b9

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

docker-compose.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,7 @@ services:
3636
extends:
3737
file: docker-services.yml
3838
service: search
39+
opensearch-dashboards:
40+
extends:
41+
file: docker-services.yml
42+
service: opensearch-dashboards

docker-services.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,13 @@ services:
5555
command: --broker=amqp://guest:guest@mq:5672/ --broker_api=http://guest:guest@mq:15672/api/
5656
ports:
5757
- "5555:5555"
58+
opensearch-dashboards:
59+
image: opensearchproject/opensearch-dashboards:2.11.1
60+
ports:
61+
- "5601:5601"
62+
expose:
63+
- "5601"
64+
environment:
65+
# settings only for development. DO NOT use in production!
66+
- 'OPENSEARCH_HOSTS=["http://search:9200"]'
67+
- "DISABLE_SECURITY_DASHBOARDS_PLUGIN=true"

0 commit comments

Comments
 (0)