Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix docker cfg cache dir
  • Loading branch information
viniciusam committed Apr 5, 2017
commit 235c777c41c1c187656975d966d72340d1ca8cbd
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jdk:

env:
global:
- DOCKER_CFG=$HOME/.docker/config.json
- DOCKER_CFG=$HOME/.docker
- DOCKER_REPO="viniciusam/oracledb"
- UTPLSQL_VERSION="v3.0.0-beta"
- UTPLSQL_FILE="utPLSQLv3.0.0.562-beta"
Expand Down
2 changes: 1 addition & 1 deletion .travis/start_db.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -e

# If docker credentials are not cached, do the login.
if [ ! -f $DOCKER_CFG ]; then
if [ ! -f $DOCKER_CFG/config.json ]; then
docker login -u "$DOCKER_USER" -p "$DOCKER_PASSWORD"
else
echo "Using docker login from cache..."
Expand Down