This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# we'll create a "machine" called dev on virtualbox | |
docker-machine create --driver virtualbox dev | |
# let's use this machine | |
eval "$(docker-machine env dev)" | |
# let's take note of our docker-ip | |
docker-machine ip dev | |
# let's run this app | |
docker-compose up | |
# now go to your browser and type ip :) it should show something | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment