Skip to content

Commit

Permalink
Install plugins one by one on Dockerfile
Browse files Browse the repository at this point in the history
Installing the visualization plugins separately makes it
easier to update their URLs on the release process.

Signed-off-by: Eva Millán <evamillan@bitergia.com>
  • Loading branch information
evamillan committed Dec 19, 2023
1 parent 0c04bb7 commit 6ba251a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ ENV PATH=/usr/share/opensearch-dashboards/bin:$PATH
#

# Install visualization plugins
RUN opensearch-dashboards-plugin install "https://github.com/dlumbrer/kbn_radar/releases/download/osd-2.7.0/kbn_radar-7.10.0_2.7.0.zip" && \
opensearch-dashboards-plugin install "https://github.com/dlumbrer/kbn_network/releases/download/osd-2.7.0/kbn_network-7.10.0_2.7.0.zip" && \
opensearch-dashboards-plugin install "https://github.com/dlumbrer/kbn_dotplot/releases/download/osd-2.7.0/kbn_dotplot-7.10.0_2.7.0.zip" && \
opensearch-dashboards-plugin install "https:/github.com/dlumbrer/kbn_polar/releases/download/osd-2.7.0/kbn_polar-1.0.0_2.7.0.zip"
RUN opensearch-dashboards-plugin install "https://github.com/dlumbrer/kbn_radar/releases/download/osd-2.7.0/kbn_radar-7.10.0_2.7.0.zip"
RUN opensearch-dashboards-plugin install "https://github.com/dlumbrer/kbn_network/releases/download/osd-2.7.0/kbn_network-7.10.0_2.7.0.zip"
RUN opensearch-dashboards-plugin install "https://github.com/dlumbrer/kbn_dotplot/releases/download/osd-2.7.0/kbn_dotplot-7.10.0_2.7.0.zip"
RUN opensearch-dashboards-plugin install "https:/github.com/dlumbrer/kbn_polar/releases/download/osd-2.7.0/kbn_polar-1.0.0_2.7.0.zip"

# Install enhanced table plugin
RUN opensearch-dashboards-plugin install "https://github.com/fbaligand/kibana-enhanced-table/releases/download/v1.13.3/enhanced-table-1.13.3_osd-2.7.0.zip"
Expand Down

0 comments on commit 6ba251a

Please sign in to comment.