Rename dockerfiles for clarity

also rename image name to just 'odfe'

Signed-off-by: Rushi Agrawal <rushi.agr@gmail.com>
This commit is contained in:
Rushi Agrawal
2021-08-10 18:58:00 +05:30
parent 98cfd25604
commit 87cf44ccd6
5 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -115,7 +115,7 @@ esac
echo -e "\033[34;1mINFO: building $product container\033[0m"
docker build \
--file $repo/.ci/Dockerfile \
--file $repo/.ci/Dockerfile.client \
--tag ${product} \
.
+4 -4
View File
@@ -93,10 +93,10 @@ END
if [[ "$i" == "$((NUMBER_OF_NODES-1))" ]]; then local_detach=$DETACH; fi
echo -e "\033[34;1mINFO: building odfe-no-security-plugin container\033[0m"
echo -e "\033[34;1mINFO: building odfe container\033[0m"
docker build \
--file=.ci/Dockerfile.opendistro.no.security.plugin \
--tag=odfe-no-security-plugin \
--file=.ci/Dockerfile.server \
--tag=odfe \
.
echo -e "\033[34;1mINFO:\033[0m Starting container $node_name \033[0m"
@@ -116,7 +116,7 @@ END
--health-retries=20 \
--health-timeout=2s \
--rm \
odfe-no-security-plugin;
odfe;
set +x
if wait_for_container "$es_node_name" "$network_name"; then
+1 -1
View File
@@ -24,7 +24,7 @@ echo -e "\033[34;1mINFO:\033[0m PYTHON_CONNECTION_CLASS ${PYTHON_CONNECTION_CLAS
echo -e "\033[1m>>>>> Build [elastic/elasticsearch-py container] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>\033[0m"
docker build \
--file .ci/Dockerfile \
--file .ci/Dockerfile.client \
--tag elastic/elasticsearch-py \
--build-arg PYTHON_VERSION=${PYTHON_VERSION} \
.