Browse Source

Fix path error in docker-compose command

pull/964/head
Maurits van Beusekom 5 years ago
parent
commit
45755aff0b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      k8s/helm/deploy-all.sh

+ 1
- 1
k8s/helm/deploy-all.sh View File

@ -118,7 +118,7 @@ export TAG=$image_tag
if [[ $build_images ]]; then if [[ $build_images ]]; then
echo "#################### Building the $app_name Docker images ####################" 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 # Remove temporary images
docker rmi $(docker images -qf "dangling=true") docker rmi $(docker images -qf "dangling=true")


Loading…
Cancel
Save