I'm pretty comfortable using Docker recently, typically to test websites to make sure they run properly on servers before I deploy them.
Typically, I mount my local directory to the locally running image like:
docker run -v c:\temp\website:/var/www/html (you get the picture)
What I am curious about is if there is a way to mount my local volume to a remote server running docker. I'm pretty sure the answer is no, unless I poke wholes in firewalls and such to make a local volume share externally.
But, I thought I would ask. Docker seems to be doing some amazing things quickly.