From ec9bccbe3a876c957e595839597f420d59578b85 Mon Sep 17 00:00:00 2001 From: Chris Hyzer Date: Mon, 1 Feb 2021 12:58:38 -0500 Subject: [PATCH] new version --- base/Dockerfile | 2 +- gte | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/base/Dockerfile b/base/Dockerfile index 4d418a1..ec420dd 100644 --- a/base/Dockerfile +++ b/base/Dockerfile @@ -1,7 +1,7 @@ FROM tier/shib-idp:3.4.3_20190201 as idp # Grouper version for the entire GTE -FROM i2incommon/grouper:2.5.40 +FROM i2incommon/grouper:2.5.41 # Disable docker HEALTHCHECK inherited from tier/shib-sp HEALTHCHECK NONE diff --git a/gte b/gte index 283a808..132c7d9 100755 --- a/gte +++ b/gte @@ -10,12 +10,14 @@ show_help() { echo " --rabbitmq: also start up a rabbitmq container, and link it as name 'rabbitmq'" echo " --fg: Don't detach (i.e., don't run container with -d flag" echo " -h|--help: This help message" + echo " --ldap: Expose port 389" echo "" echo "If no GTE lesson id number is passed in, the command will list all the available ids" } for arg in $*; do case $arg in + --ldap) EXTRA_ARGS="$EXTRA_ARGS -p 389:389"; shift;; --rabbitmq) EXTRA_ARGS="$EXTRA_ARGS --link rabbitmq:rabbitmq"; RABBITMQ_FL=1; shift;; --fg) is_foreground=1; shift;; -it) is_foreground=1; EXTRA_ARGS="$EXTRA_ARGS $1"; shift;;