Skip to content

Instantly share code, notes, and snippets.

@fcamblor
Last active August 29, 2015 14:01
Show Gist options
  • Save fcamblor/41e6701e94c81ea855c1 to your computer and use it in GitHub Desktop.
Save fcamblor/41e6701e94c81ea855c1 to your computer and use it in GitHub Desktop.
Share folder between osx and boot2docker

Pour que le tout fonctionne sous mac OS X (via boot2docker) :

  • Rajouter nameserver 8.8.8.8 dans votre fichier /etc/resolv.conf de votre vm docker (après un boot2docker ssh)

  • Penser à avoir effectué un port forwarding entre votre OS X et la machine boot2docker :

    for i in {49000..49900}; do
      VBoxManage modifyvm "boot2docker-vm" --natpf1 "tcp-port$i,tcp,,$i,,$i";
      VBoxManage modifyvm "boot2docker-vm" --natpf1 "udp-port$i,udp,,$i,,$i";
    done
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment