-3 but the comment isn't faded? How does that work? And while I'm here, what is the downing for? An observation on the different terms used in New York and London - too off topic? Seems a bit excitable.
I would prefer to use LXD for this stuff. I can work in a container that is pretty much a vm. Snapshot and publish that vm to LXC registry and pull it down to another machine with faster internets. And all I need to do install apt-get install lxd. No crazy plugins and long command line stuff.
Really cool post... though it seems like DigitalOcean, Linode or others might be a better idea if you use the instances more than a few hours a month.
I'm not connection constrained, but my workflow for linux is to mount a drive/directory to a linux instance (virtual or physical) edit with a gui editor locally, and run via an ssh connected cli. Which works pretty well for me.
Anyone familiar with something that can mount a virtual drive in windows or osx to a linux machine over ssh?
19 comments
[ 5.4 ms ] story [ 66.3 ms ] threadIf my gaming PC supported PCI passthrough I would though.
I'm not connection constrained, but my workflow for linux is to mount a drive/directory to a linux instance (virtual or physical) edit with a gui editor locally, and run via an ssh connected cli. Which works pretty well for me.
Anyone familiar with something that can mount a virtual drive in windows or osx to a linux machine over ssh?
If you mount your working directory exactly like on your host machine, you can even use relative paths in your Dockerfile.
E.g mount /Users/tracker1 from your host on /Users/tracker1 on the VM.
Since your Dockerfile working dir matches on both systems, you can use them as if you were working directly on the machine, like:
ADD ./entrypoint.sh /entrypoint.sh COPY ./app/code /code
etc.
https://gist.github.com/proudlygeek/5721498