Compare commits

..

No commits in common. "d3d0a4cc5d897773f08508cdb9d3c10d5b617df6" and "0d7c1902c18e2ff2367effe15792c7fa1d81a12b" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ backupRootDirectory /etc/docker/daemon.json $BACKUP_DIR_ROOT/docker/
### upload backup ###
#####################
if [[ $# > 0 && "$1" == "--noupload" ]]; then
if [[ "$1" == "--noupload" ]]; then
exit 0;
fi

View File

@ -16,7 +16,7 @@ upDownContainers() {
continue;
fi
cd $subdir;
docker compose $@;
docker-compose $@;
done
}