Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update scripts to only build required docker-compose services #46

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 2 additions & 1 deletion bin/integration_tests
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ cat <<ENV > .env
CONJUR_AUTHN_API_KEY=$admin_api_key
ENV

echo "Starting test env..."
echo "Building and starting test env..."
docker-compose build test-python
docker-compose up -d test-python

rm -rf $CURRENT_DIR/output/*
Expand Down
2 changes: 1 addition & 1 deletion bin/start_conjur
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ trap 'echo "ERROR: Test script encountered an error!"; docker-compose logs; clea
cleanup

echo "Building services..."
docker-compose build
docker-compose build pg conjur conjur-https

# Start Conjur server
echo "Starting Conjur..."
Expand Down