diff --git a/subcommands/clone b/subcommands/clone index 6c8beb3..ab0e073 100755 --- a/subcommands/clone +++ b/subcommands/clone @@ -9,9 +9,9 @@ service-clone-cmd() { #E dokku $PLUGIN_COMMAND_PREFIX:clone lolipop lolipop-2 #A service, service to run command against #A new-service, name of new service - #F -c|--custom-env "USER=alpha;HOST=beta", semi-colon delimited environment variables to start the service with + #F -C|--custom-env "USER=alpha;HOST=beta", semi-colon delimited environment variables to start the service with #F -i|--image IMAGE, the image name to start the service with - #F -i|--image-version IMAGE_VERSION, the image version to start the service with + #F -I|--image-version IMAGE_VERSION, the image version to start the service with #F -p|--password PASSWORD, override the user-level service password #F -r|--root-password PASSWORD, override the root-level service password declare desc="create container then copy data from into " diff --git a/subcommands/create b/subcommands/create index f8456e4..e5135b3 100755 --- a/subcommands/create +++ b/subcommands/create @@ -17,9 +17,9 @@ service-create-cmd() { #E export ${PLUGIN_DEFAULT_ALIAS}_CUSTOM_ENV="USER=alpha;HOST=beta" #E dokku $PLUGIN_COMMAND_PREFIX:create lolipop #A service, service to run command against - #F -c|--custom-env "USER=alpha;HOST=beta", semi-colon delimited environment variables to start the service with + #F -C|--custom-env "USER=alpha;HOST=beta", semi-colon delimited environment variables to start the service with #F -i|--image IMAGE, the image name to start the service with - #F -i|--image-version IMAGE_VERSION, the image version to start the service with + #F -I|--image-version IMAGE_VERSION, the image version to start the service with #F -p|--password PASSWORD, override the user-level service password #F -r|--root-password PASSWORD, override the root-level service password declare desc="create a $PLUGIN_SERVICE service" diff --git a/subcommands/upgrade b/subcommands/upgrade index 72fcf5d..b4718c8 100755 --- a/subcommands/upgrade +++ b/subcommands/upgrade @@ -8,9 +8,9 @@ service-upgrade-cmd() { #E you can upgrade an existing service to a new image or image-version #E dokku $PLUGIN_COMMAND_PREFIX:upgrade lolipop #A service, service to run command against - #F -c|--custom-env "USER=alpha;HOST=beta", semi-colon delimited environment variables to start the service with + #F -C|--custom-env "USER=alpha;HOST=beta", semi-colon delimited environment variables to start the service with #F -i|--image IMAGE, the image name to start the service with - #F -i|--image-version IMAGE_VERSION, the image version to start the service with + #F -I|--image-version IMAGE_VERSION, the image version to start the service with declare desc="upgrade service to the specified versions" local cmd="$PLUGIN_COMMAND_PREFIX:upgrade" argv=("$@"); [[ ${argv[0]} == "$cmd" ]] && shift 1 declare SERVICE="$1" UPGRADE_FLAG_LIST="${@:2}"