You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the project only supports docker compose v1 docker-compose, while there exists v2 docker compose. Based on this answer, v1 has now been deprecated and most new docker users are using v2.
The users of v2 on Linux may get the following error message when running make start:
docker-compose -f bootup/docker-compose-files/docker-compose-dev.yml up -d --force-recreate --remove-orphans
make[1]: docker-compose: Command not found
make[1]: *** [Makefile:215: start-docker-compose] Error 127
The Makefile can be changed to support both versions of docker compose.
The text was updated successfully, but these errors were encountered:
* [#issue-460] Switch docker composer to v2
Update the following targes in Makefile:
log, logs, start-docker-compose, stop-docker-compose, check-dashboard.
Update the following other files:
build_image/docker/cello-hlf/Dockerfile,
scripts/master_node/build_js.sh,
scripts/master_node/setup.sh,
scripts/worker_node/setup.sh,
scripts/worker_node/setup_worker_node_docker.sh,
src/dashboard/package.json,
tests/postman/test.sh
These files and targets will be tested on a Linux machine.
Signed-off-by: xichen1 <xichen.pan@gmail.com>
* [#issue-460] Fix the incorrect intents.
Fix the incorrect intents in the last commit.
Signed-off-by: xichen1 <xichen.pan@gmail.com>
* [#issue-460] Modify setup doc
Add information about Docker Compose Version switch to setup doc.
Close#460
Signed-off-by: xichen1 <xichen.pan@gmail.com>
Currently, the project only supports docker compose v1
docker-compose
, while there exists v2docker compose
. Based on this answer, v1 has now been deprecated and most new docker users are using v2.The users of v2 on Linux may get the following error message when running
make start
:docker-compose -f bootup/docker-compose-files/docker-compose-dev.yml up -d --force-recreate --remove-orphans make[1]: docker-compose: Command not found make[1]: *** [Makefile:215: start-docker-compose] Error 127
The Makefile can be changed to support both versions of docker compose.
The text was updated successfully, but these errors were encountered: