The line to create the new image by deactivating the security plugin uses "security-dashboards" and this returns the following error:
docker build --tag=opensearch-dashboards-no-security .
Sending build context to Docker daemon 5.12kB
Step 1/3 : FROM opensearchproject/opensearch-dashboards:1.0.0
---> 6a109c3fbebf
Step 2/3 : RUN /usr/share/opensearch-dashboards/bin/opensearch-dashboards-plugin remove security-dashboard
---> Running in 965b66ef7abd
Unable to remove plugin because of error: "Plugin [security-dashboard] is not installed"
The command '/bin/sh -c /usr/share/opensearch-dashboards/bin/opensearch-dashboards-plugin remove security-dashboard' returned a non-zero code: 74
Instead using the correct plugin name "securityDashboards" the image compiles correctly:
docker build --tag=opensearch-dashboards-no-security .
Sending build context to Docker daemon 6.144kB
Step 1/3 : FROM opensearchproject/opensearch-dashboards:1.0.0
---> 6a109c3fbebf
Step 2/3 : RUN /usr/share/opensearch-dashboards/bin/opensearch-dashboards-plugin remove securityDashboards
---> Using cache
---> bb9a535b8e42
Step 3/3 : COPY --chown=opensearch-dashboards:opensearch-dashboards opensearch_dashboards.yml /usr/share/opensearch-dashboards/config/
---> e6e76bba8a4f
Successfully built e6e76bba8a4f
Successfully tagged opensearch-dashboards-no-security:latest
Ref:
- https://opensearch.org/docs/dashboards/install/plugins/#list-installed-plugins
- https://github.com/opensearch-project/documentation-website/blob/main/_dashboards/install/plugins.md