[error] etcd makefile can't into the directory
Closed this issue · 2 comments
JiChenSSG commented
Describe the bug
Makefile under etcd directory have such code
prepare-cluster:
cd example
docker-compose up -d
it should be
prepare-cluster:
cd example && docker-compose up -d
To Reproduce
Steps to reproduce the behavior:
cd etcd
make
smx-Morgan commented
“cd example && docker-compose up -d” This command can indeed better bind these two operations, and this logic will be modified in the new registry repository.
JiChenSSG commented
“cd example && docker-compose up -d” This command can indeed better bind these two operations, and this logic will be modified in the new registry repository.
That will be great.