Skip to content

Instantly share code, notes, and snippets.

@purp
Created September 23, 2022 16:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save purp/5aa7b07316868154129e6464cbe6d9cc to your computer and use it in GitHub Desktop.
Save purp/5aa7b07316868154129e6464cbe6d9cc to your computer and use it in GitHub Desktop.
Docker Dev Environments Notes

Troubleshooting

If Docker complains that you don't have git installed:

  • which git for the path (and if you realize now that it's not installed, now you can fix it)
  • If it's a non-standard path (I use /opt/homebrew), that's why Docker can't find it
    • cd /usr/local/bin && ln -s $(which git) .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment