3.0.0 | docker pull icr.io/ibmz/opensearch-dashboards@sha256:8483ba82c9596f626a6f200af65511284a237991b327a29ade2aab0c7ef8d3e9 | Vulnerability Report | 01-12-2023 | 2.16.0 | docker pull icr.io/ibmz/opensearch-dashboards@sha256:62eddff040c76f1ff61c5df8349a72aed158f4e7b01712d21ba4919738dde2d2 | Vulnerability Report | 09-27-2024 | 2.6.0 | docker pull icr.io/ibmz/opensearch-dashboards@sha256:c6f1c7927db30311f71e39d5fc7e72319fdf891d71af15fad6580cb9ebfc719c | Vulnerability Report | 05-10-2023 |
Version | Pull String | Security (IBM Cloud) | Created |
---|---|---|---|
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'