Skip to content

Commit

Permalink
Add debugging in build.sh for running sites problem (#876)
Browse files Browse the repository at this point in the history
  • Loading branch information
rfay committed May 23, 2018
1 parent 796d44e commit 94db20d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ echo "Warning: deleting all docker containers and deleting ~/.ddev/Test*"
if [ "$(docker ps -aq | wc -l)" -gt 0 ] ; then
docker rm -f $(docker ps -aq)
fi
ddev list
echo "Docker ps -a:"
docker ps -a

# Update all images that may have changed
docker images |grep -v REPOSITORY | awk '{print $1":"$2 }' | xargs -L1 docker pull
rm -rf ~/.ddev/Test*
Expand Down

0 comments on commit 94db20d

Please sign in to comment.