Created
March 21, 2018 02:03
-
-
Save raychew13/aea616fd1ff5b6792803b30462268e95 to your computer and use it in GitHub Desktop.
Docker Tips
This file contains hidden or 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
# Delete Docker machine | |
docker-machine rm -y default | |
# Create Docker machine (default) | |
docker-machine create -d virtualbox default | |
# Build image with 4G memory. Some of the machine learning library requires 4G of memory to install. | |
docker build -t forecast:R1.1 -m 4g . | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment