You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by dm...@apache.org on 2020/07/16 23:54:19 UTC

[ignite] branch master updated: IGNITE-11715 Allow extra options to be passed in to ignite.sh from Docker image (#6552)

This is an automated email from the ASF dual-hosted git repository.

dmagda pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new 6d46262  IGNITE-11715 Allow extra options to be passed in to ignite.sh from Docker image (#6552)
6d46262 is described below

commit 6d46262798da23965a619455295d3baa43753d00
Author: Stephen Darlington <st...@gridgain.com>
AuthorDate: Fri Jul 17 00:53:54 2020 +0100

    IGNITE-11715 Allow extra options to be passed in to ignite.sh from Docker image (#6552)
---
 docker/apache-ignite/run.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docker/apache-ignite/run.sh b/docker/apache-ignite/run.sh
index 798a4f9..dcb2f4a 100755
--- a/docker/apache-ignite/run.sh
+++ b/docker/apache-ignite/run.sh
@@ -40,7 +40,7 @@ if [ "$IGNITE_QUIET" = "false" ]; then
 fi
 
 if [ -z $CONFIG_URI ]; then
-  $IGNITE_HOME/bin/ignite.sh $QUIET
+  $IGNITE_HOME/bin/ignite.sh $QUIET ${IGNITE_OPTIONS:-}
 else
-  $IGNITE_HOME/bin/ignite.sh $QUIET $CONFIG_URI
+  $IGNITE_HOME/bin/ignite.sh $QUIET ${IGNITE_OPTIONS:-} $CONFIG_URI
 fi