We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4a9810 commit 235c777Copy full SHA for 235c777
.travis.yml
@@ -9,7 +9,7 @@ jdk:
9
10
env:
11
global:
12
- - DOCKER_CFG=$HOME/.docker/config.json
+ - DOCKER_CFG=$HOME/.docker
13
- DOCKER_REPO="viniciusam/oracledb"
14
- UTPLSQL_VERSION="v3.0.0-beta"
15
- UTPLSQL_FILE="utPLSQLv3.0.0.562-beta"
.travis/start_db.sh
@@ -2,7 +2,7 @@
2
set -e
3
4
# If docker credentials are not cached, do the login.
5
-if [ ! -f $DOCKER_CFG ]; then
+if [ ! -f $DOCKER_CFG/config.json ]; then
6
docker login -u "$DOCKER_USER" -p "$DOCKER_PASSWORD"
7
else
8
echo "Using docker login from cache..."
0 commit comments