mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-26 13:47:26 +03:00
3f4d26d419
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
10 lines
396 B
Bash
Executable File
10 lines
396 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Usage
|
|
# ./install-elastic-plugin.sh sanity_elastic_1
|
|
|
|
# Direct download, or use VPN.
|
|
#wget https://artifacts.elastic.co/downloads/elasticsearch-plugins/ingest-attachment/ingest-attachment-7.14.2.zip
|
|
docker cp ./ingest-attachment-7.14.2.zip $1:/ingest-attachment-7.14.2.zip
|
|
docker exec -ti $1 ./bin/elasticsearch-plugin install file:///ingest-attachment-7.14.2.zip
|
|
docker restart $1 |