Files
spring-test-data-geode/ci/setup.sh
John Blum a1a5a194c4 Disable Docker login.
Explicit Docker login is not required when 1) using the VMW Harbor DockerHub proxy and 2) if the project build does not use Testcontainers.
2022-05-03 15:20:56 -07:00

12 lines
357 B
Bash
Executable File

#!/bin/bash -x
# User ID 1001 is "jenkins"
# Group ID 1001 is "jenkins"
# Syntax: `chown -R userId:groupId .`
echo "Logged into Jenkins CI as user [$USER] with home directory [$HOME] in the current working directory [$PWD]"
chown -R 1001:1001 .
#echo "Logging into Docker..."
#docker login --username ${DOCKER_HUB_USR} --password ${DOCKER_HUB_PSW}
exit 0