5

我在使用 Laradock 和 yarn 以及docker exec来自容器“外部”的内联命令时遇到问题workspace

当我从workspace容器内部使用它时,一切都按预期工作:

docker exec -it --user=laradock laradock_workspace_1 bash
yarn -v
1.3.2

当我尝试从内联命令中使用它时,会发生以下情况:

docker exec -it --user=laradock laradock_workspace_1 yarn -v
OCI runtime exec failed: exec failed: container_linux.go:296: starting container process caused "exec: \"yarn\": executable file not found in $PATH": unknown

我做错什么了吗?

4

2 回答 2

4

我自己找到了解决方案。
对于那些遇到同样问题的人,只需使用docker exec下面的示例,就可以访问 node 或 yarn :

docker exec -it --user=laradock laradock_workspace_1 bash --login -c "yarn -v"

我在这里找到了解决方案:https ://gitlab.com/gitlab-org/gitlab-runner/issues/82

于 2018-02-19T09:58:24.827 回答
0

尝试这个

#apt-get install sudo -y
#sudo apt-get install apt-transport-https
#sudo apt-get install apt-transport-https
#apt-get remove node
#apt-get remove yarn
#curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
#sudo apt-get install -y nodejs
#curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
#echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
#sudo apt-get update && sudo apt-get install yarn
#apt-get remove node
#apt-get remove yarn
#curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
#sudo apt-get install -y nodejs
#curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
#echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
#sudo apt-get update && sudo apt-get install yarn
#yarn -v
1.13.0
#yarn install
于 2019-02-20T23:15:56.967 回答