Skip to content

Instantly share code, notes, and snippets.

@raychew13
Created March 21, 2018 02:03
Show Gist options
  • Save raychew13/aea616fd1ff5b6792803b30462268e95 to your computer and use it in GitHub Desktop.
Save raychew13/aea616fd1ff5b6792803b30462268e95 to your computer and use it in GitHub Desktop.
Docker Tips
# 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