Skip to content

Instantly share code, notes, and snippets.

@jovanialferez
Last active December 8, 2018 14:15
Show Gist options
  • Save jovanialferez/87809caeeecb7ad8a8301de8ad9f4815 to your computer and use it in GitHub Desktop.
Save jovanialferez/87809caeeecb7ad8a8301de8ad9f4815 to your computer and use it in GitHub Desktop.
my windows 10 dev setup

sudo apt-get update sudo apt-get install docker.io

; this assumes docker for windows had exposed daemon to this port export DOCKER_HOST=tcp://localhost:2375

; install docker-compose ; see https://docs.docker.com/compose/install/#install-compose

; fix mount issue ; coz docker for windows expect source without the /mnt like /c/path_to_anywhere ; while WSL have it as /mnt/c/path_to_anywhere

; create /etc/wsl.conf

[automount]
root = /
options = "metadata"

; don't forget to update mapping in docker-compose yml files to make use of corrected path

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment