mirror of
https://github.com/dokku/dokku.git
synced 2025-12-16 20:17:44 +01:00
The new command superscedes the previous tags plugin, and integrates docker image deployment with the general build process. While `docker image load` is not supported, this otherwise completely handles all previous workflows supported by the `tags:deploy` command, while doing so in a much easier to use interface. Closes #4296
7 lines
146 B
Bash
Executable File
7 lines
146 B
Bash
Executable File
#!/usr/bin/env bash
|
|
source "$PLUGIN_AVAILABLE_PATH/git/internal-functions"
|
|
set -eo pipefail
|
|
[[ $DOKKU_TRACE ]] && set -x
|
|
|
|
cmd-git-from-image "$@"
|