Yevgeniy Brikman
Yevgeniy Brikman
Why does it say `BusyBox`? It seems like the wrong binary is being called... What command(s) did you run? Also, can you set the log level to `DEBUG` so we...
The error is right at the top: ``` /usr/local/bin/docker-osx-dev: line 999: greadlink: command not found ``` Did you run `docker-osx-dev install`? Were there any errors? It should have installed the...
Yes, docker-osx-dev uses rsync under the hood, and therefore only does one-way sync: https://github.com/brikis98/docker-osx-dev#limitations-and-known-issues. rsync will also delete items in the Docker container that are not on the host. If...
I haven't had a chance to use Docker Beta yet. Isn't it using something other than VirtualBox as the VM? If so, does that VM still have the same issues...
Wait, so it's even _slower_ than vboxfs? That's quite an accomplishment :) If anyone has it installed and can do a mini benchmark comparing native file system performance versus a...
Ah, OK. Well, if you've got a chance to benchmark the latest version, let me know how it works for you.
@gcstang Thanks for the link. Sounds like the perf problems are pretty severe, but the Docker team is working on it: > Just an update here from the Docker camp......
Hm, I'm not sure if this is docker-osx-dev related. A quick google search turns up: https://github.com/docker/compose/issues/890 https://github.com/Homebrew/legacy-homebrew/issues/38226 https://github.com/docker/docker-py/issues/465 Perhaps some issue with the python version on your system?
Ah, interesting. If this is a common occurrence, it would make sense to add some sort of `--keep-vbox-shared-folder` param (which could be specified multiple times) that will be skipped over...
docker-osx-dev uses `docker-machine ssh` or `boot2docker ssh` to connect to your VM. To authenticate, it uses an SSH key. You can find the logic for docker-machine [here](https://github.com/brikis98/docker-osx-dev/blob/master/src/docker-osx-dev#L451) and the logic...