Files
spring-boot-data-geode/ci/setup.sh
John Blum b2c1363d76 Move 'docker login' command to setup.sh.
Move 'chown' and and 'mkdir /tmp/jenkins-home' commmands to setup.sh.

Add 'exit 0' commands to the cleanup Bash shell scripts.

Add 'echo' commands to log build progress.
2021-04-07 20:49:27 -07:00

8 lines
172 B
Bash
Executable File

#!/bin/bash -x
mkdir -p /tmp/jenkins-home
chown -R 1001:1001 .
echo "Logging into Docker..."
docker login --username ${DOCKER_HUB_USR} --password ${DOCKER_HUB_PSW}
exit 0