bash: docker-compose: command not found

  1. sudo curl -L https://github.com/docker/compose/releases/download/1.21.0/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose
  2. sudo chmod +x /usr/local/bin/docker-compose

After you do the curl command , it’ll put docker-compose into the

/usr/local/bin

which is not on the PATH To fix it, create a symbolic link:

  1. sudo ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose

And now if you do: docker-compose –version

You’ll see that docker-compose is now on the PATH


喃懂妳 » bash: docker-compose: command not found

发表回复

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据

查看更多实用工具

立即查看 了解详情