Fix path error in docker-compose command

This commit is contained in:
Maurits van Beusekom 2019-03-08 16:16:50 +01:00
parent 46590874a7
commit 45755aff0b

View File

@ -118,7 +118,7 @@ export TAG=$image_tag
if [[ $build_images ]]; then
echo "#################### Building the $app_name Docker images ####################"
docker-compose -p .. -f ../../docker-compose.yml build
docker-compose -p ../.. -f ../../docker-compose.yml build
# Remove temporary images
docker rmi $(docker images -qf "dangling=true")