All checks were successful
BlockStorage/repertory_linux_builds/pipeline/head This commit looks good
16 lines
362 B
Bash
Executable File
16 lines
362 B
Bash
Executable File
#!/bin/bash
|
|
|
|
CURRENT_DIR=$(dirname "$0")
|
|
CURRENT_DIR=$(realpath ${CURRENT_DIR})
|
|
|
|
DOCKER_NAME=$1
|
|
shift
|
|
|
|
. "${CURRENT_DIR}/env.sh" "$1" "$2" "$3" "$4" "$5" 1 1>/dev/null 2>&1
|
|
|
|
DOCKER_CONTAINER=${PROJECT_APP_NAME}_${DOCKER_NAME}_${PROJECT_BUILD_ARCH}_shell
|
|
DOCKER_TAG=${PROJECT_APP_NAME}:${DOCKER_NAME}
|
|
DOCKER_SHELL=1
|
|
|
|
. "${CURRENT_DIR}/docker_common.sh" || exit 1
|