mirror of
https://github.com/dokku/dokku.git
synced 2025-12-16 12:07:45 +01:00
Any subsequent ps:rebuild should always respect the image for fetching files. This test proves this works. Closes #7375
41 lines
1.5 KiB
Bash
Executable File
41 lines
1.5 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions"
|
|
source "$PLUGIN_CORE_AVAILABLE_PATH/common/property-functions"
|
|
set -eo pipefail
|
|
[[ $DOKKU_TRACE ]] && set -x
|
|
|
|
trigger-git-git-from-image() {
|
|
declare desc="updates a repository from a docker image"
|
|
declare trigger="git-from-image"
|
|
declare APP="$1" DOCKER_IMAGE="$2" BUILD_DIR="$3" USER_NAME="${4:-Dokku}" USER_EMAIL="${4:-automated@dokku.sh}"
|
|
|
|
local TMP_WORK_DIR=$(mktemp -d "/tmp/dokku-${DOKKU_PID}-${FUNCNAME[0]}.XXXXXX")
|
|
trap "rm -rf '$TMP_WORK_DIR' >/dev/null" RETURN INT TERM EXIT
|
|
|
|
dokku_log_info1 "Generating build context"
|
|
if [[ -n "$BUILD_DIR" ]]; then
|
|
if [[ ! -d "$BUILD_DIR" ]]; then
|
|
dokku_log_fail "Invalid BUILD_DIR specified for docker build context"
|
|
fi
|
|
|
|
dokku_log_verbose "Syncing build directory context"
|
|
rsync -a "$BUILD_DIR/" "$TMP_WORK_DIR"
|
|
fi
|
|
|
|
touch "$TMP_WORK_DIR/Dockerfile"
|
|
echo "FROM $DOCKER_IMAGE" >>"$TMP_WORK_DIR/Dockerfile"
|
|
echo "LABEL com.dokku.docker-image-labeler/alternate-tags=[\\\"$DOCKER_IMAGE\\\"]" >>"$TMP_WORK_DIR/Dockerfile"
|
|
|
|
if [[ "$(docker images -q "$DOCKER_IMAGE" 2>/dev/null)" == "" ]]; then
|
|
dokku_log_info1 "Pulling image"
|
|
"$DOCKER_BIN" image pull "$DOCKER_IMAGE"
|
|
else
|
|
dokku_log_info1 "Image exists on host, skipping pull"
|
|
fi
|
|
|
|
fn-plugin-property-write "git" "$APP" "source-image" "$DOCKER_IMAGE"
|
|
plugn trigger git-from-directory "$APP" "$TMP_WORK_DIR" "$USER_NAME" "$USER_EMAIL"
|
|
}
|
|
|
|
trigger-git-git-from-image "$@"
|