1.1 KiB
layout, title, parent, nav_order
| layout | title | parent | nav_order |
|---|---|---|---|
| default | Docker | Install OpenSearch Dashboards | 1 |
Run OpenSearch Dashboards using Docker
You can start OpenSearch Dashboards using docker run after creating a Docker network and starting OpenSearch, but the process of connecting OpenSearch Dashboards to OpenSearch is significantly easier with a Docker Compose file.
-
Run
docker pull opensearchproject/opensearch-dashboards:{{site.opensearch_version}}. -
Create a
docker-compose.ymlfile appropriate for your environment. A sample file that includes OpenSearch Dashboards is available on the OpenSearch Docker installation page.Just like
opensearch.yml, you can pass a customopensearch_dashboards.ymlto the container in the Docker Compose file. {: .tip } -
Run
docker-compose up.Wait for the containers to start. Then see the OpenSearch Dashboards documentation.
-
When finished, run
docker-compose down.