mirror of
https://github.com/immich-app/immich
synced 2026-08-15 13:03:57 +00:00
fix: shell scripts (#7189)
* fix: bash scripts * fix: use bash * fix: e2e
This commit is contained in:
parent
ddae707ea9
commit
66d3daa074
5 changed files with 21 additions and 44 deletions
|
|
@ -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\`."
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue