Skip to content

Commit

Permalink
chore: add opensearch-dasboards to docker compose
Browse files Browse the repository at this point in the history
Added OpenSearch Dashboards to the Docker Compose setup, enabling a visual interface for
interacting with the OpenSearch cluster. This makes it easier to view and test changes.
  • Loading branch information
jboix committed Nov 28, 2024
1 parent 3284551 commit e9da81b
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ services:
- PILLARBOX_MONITORING_DISPATCH_URI=http://pillarbox-event-dispatcher:8080/events

opensearch:
image: opensearchproject/opensearch:2.15.0
image: opensearchproject/opensearch:2.17.0
container_name: opensearch
ports:
- '9200:9200'
Expand All @@ -35,6 +35,17 @@ services:
reservations:
memory: 512m

opensearch-dashboards:
image: opensearchproject/opensearch-dashboards:2.17.0
container_name: opensearch-dashboards
ports:
- '5601:5601'
environment:
- OPENSEARCH_HOSTS=http://opensearch:9200
- DISABLE_SECURITY_DASHBOARDS_PLUGIN=true
depends_on:
- opensearch

pillarbox-monitoring-grafana:
build: ./pillarbox-monitoring-grafana
image: srgssr/pillarbox-monitoring-grafana:1.0.0
Expand Down

0 comments on commit e9da81b

Please sign in to comment.