You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
346 B
Bash
10 lines
346 B
Bash
#!/bin/bash
|
|
|
|
if [ "x$1" == "x" ];then
|
|
echo "Stage as param \$1 is missing. exit"
|
|
exit 1
|
|
fi
|
|
|
|
|
|
docker run -v `pwd`/templates/elastic-certs:/certs -v `pwd`/templates/elastic-certs/$1-instances.yaml:/usr/share/elasticsearch/config/certificates/$1-instances.yml docker.elastic.co/elasticsearch/elasticsearch:7.16.3 /bin/sh "/certs/certutil.sh" $1
|