I have a problem using Laradock and yarn using the docker exec built-in from outside the workspace container.
When I use it from the workspace container, everything works as expected:
docker exec -it --user=laradock laradock_workspace_1 bash yarn -v 1.3.2
When I try to use it from an inline command, this is what happens:
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
Am I doing something wrong?
Okipa source share