Return to Image List

opensearch-dashboards

opensearch-dashboards

OpenSearch is a family of software consisting of a search engine (also named OpenSearch), and OpenSearch Dashboards, a data visualization dashboard for that search engine (this software was originally forked from Kibana and Elasticsearch).

See opensearch.org/docs/latest/dashboards for more information

This image is built by IBM to run on the IBM Z architecture and is not affiliated with any other community that provides a version of this image.


License

View license information here

As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).

As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.


Versions

Use the pull string below for the version of this image you require.
3.0.0 docker pull icr.io/ibmz/opensearch-dashboards@sha256:8483ba82c9596f626a6f200af65511284a237991b327a29ade2aab0c7ef8d3e9 Vulnerability Report01-12-2023
2.6.0 docker pull icr.io/ibmz/opensearch-dashboards@sha256:c6f1c7927db30311f71e39d5fc7e72319fdf891d71af15fad6580cb9ebfc719c Vulnerability Report05-10-2023
Version Pull String Security (IBM Cloud) Created

Usage Notes

Exposed Ports:

5601 5603

Before running opensearch-dashboards, please be sure there is a running opensearch cluster to connect to - and place this file (or one you've edited) in a docker volume.

This file `opensearch-dashboards.yml` is responsible for configuring your connection to a running opensearch cluster. Find more on these settings and others at https://opensearch.org/docs/latest/dashboards/install/tls/

Please note that 'admin' is the default username/password for the opensearch image offered by this container registry.

server.host: "0.0.0.0"
opensearch.hosts: ["https://[host-ip-of-running-opensearch-cluster]:9200"]
opensearch.username: "admin" 
opensearch.password: "admin"
opensearch.ssl.verificationMode: none
logging.verbose: true

Once an opensearch cluster is running, and dashboards.yml is located in your created volume:

docker run --name opensearch-dashboards -d -v [your-volume]/opensearch-dashboards.yml:config/opensearch-dashboards.yml -p 5600:5600 -p 5300:5300 icr.io/ibmz/opensearch-dashboards:[version]

Verify that the connection has been established by either checking the logs or querying your host machine at port 5600:

curl -u 'admin:admin' 'http://[host-ip]:5600'