fix: shell scripts (#7189)

* fix: bash scripts

* fix: use bash

* fix: e2e
This commit is contained in:
martin
2024-02-19 03:57:24 +01:00
committed by GitHub
parent ddae707ea9
commit 66d3daa074
5 changed files with 21 additions and 44 deletions

View File

@@ -38,9 +38,9 @@ populate_upload_location() {
start_docker_compose() {
echo "Starting Immich's docker containers"
if docker compose > /dev/null 2>&1; then
if docker compose >/dev/null 2>&1; then
docker_bin="docker compose"
elif docker-compose > /dev/null 2>&1; then
elif docker-compose >/dev/null 2>&1; then
docker_bin="docker-compose"
else
echo "Cannot find \`docker compose\` or \`docker-compose\`."