mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-23 14:06:00 +03:00
6fcbd14d6f
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
7 lines
382 B
Bash
Executable File
7 lines
382 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Direct donwload, 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 sanity-elastic-1:/ingest-attachment-7.14.2.zip
|
|
docker exec -ti sanity-elastic-1 ./bin/elasticsearch-plugin install file:///ingest-attachment-7.14.2.zip
|
|
docker restart sanity-elastic-1 |