forked from andypetrella/pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
Build Docker Image
Chris Fregly edited this page Jul 10, 2016
·
18 revisions
- This will take about 15 mins to build - and lots of internet traffic - as dependent binaries and libraries are retrieved from the internet.
- Run the
docker build
command from the directory where theDockerfile
lives (ie. ~/pipeline)
git clone https://github.com/fluxcapacitor/pipeline.git
cd ~/pipeline
[... Make Changes ...]
sudo docker login
Login with your Docker ID to push and pull images from Docker Hub. If you don't have a Docker ID, head over to https://hub.docker.com to create one.
Username: <-- Enter DockerHub Username
Password: <-- Enter DockerHub Password
Login Succeeded
- Build the image (this will take a while, so you may want to
nohup
and&
the command
sudo docker build --no-cache=true -t fluxcapacitor/pipeline .
Notes
- If you run out of memory or disk space while building or running the image, you need to re-initialize docker-machine with larger memory and disk size.
- Tag and push the newly-created Docker image (this will take a while, so you may want to
nohup
and&
the command - For now, just overwrite the
latest
tag as follows:
sudo docker push fluxcapacitor/pipeline
- Login to DockerHub
- Navigate to
http://hub.docker.com/r/fluxcapacitor/pipeline
and verify the date of the Docker image
Environment Setup
Demos
6. Serve Batch Recommendations
8. Streaming Probabilistic Algos
9. TensorFlow Image Classifier
Active Research (Unstable)
15. Kubernetes Docker Spark ML
Managing Environment
15. Stop and Start Environment