#!/bin/sh DIR=`dirname "$0"` DIR=`exec 2>/dev/null;(cd -- "$DIR") && cd -- "$DIR"|| cd "$DIR"; unset PWD; /usr/bin/pwd || /bin/pwd || pwd` # Grab the absolute path to the default pfx location cert_path="$DIR/../../.keys/cert.pfx" if [ "$#" -lt "1" ]; then echo "USAGE: $0 [License Gen args...]" exit 1 elif [ "$#" -ge "2" ]; then # If a cert path is provided manually, override the default cert_path="$1" shift fi docker run -it --rm -v "$cert_path:/cert.pfx" bitbetter/licensegen "$@"