taigaio / taiga-docker

Mozilla Public License 2.0
1.18k stars 298 forks source link

[BUG] at ./launch-all.sh #112

Open juliancho2396 opened 1 year ago

juliancho2396 commented 1 year ago

The file launch-all has a wrong command

running the launch-all.sh command

Workarounds

Screenshots

Taiga environment

Desktop (please complete the following information):

Additional context

HawkFiveStudio commented 1 year ago

Looks like it's just a typo.

Current line is: exec docker compose -f docker-compose.yml -f docker-compose.penpot.yml up -d

It should be: exec docker-compose -f docker-compose.yml -f docker-compose.penpot.yml up -d

Xenira commented 1 year ago

docker compose is actually correct for compose version 2 (https://github.com/docker/compose/tree/main#docker-compose-v2)

Version 1 is deprecated iirc.

battosai30 commented 1 year ago

I had the same issue. Changing docker compose to docker-compose is not enough (docker-compose files structure changed too between V1 and V2).

Solved by installing V2 : https://docs.docker.com/engine/install/