A Docker image for GOAI project and its dependencies.
328
A docker image for MapD and pygdf and some usefull additional GPU based data science tools, like gpu version of XGBoost.
The Image is based on MapD-pygdf image, and inherits its run command.
docker pull aghorbani/goai
docker build --rm -t aghorbani/goai .
nvidia-docker run -it --rm \
-p 8888:8888 \
-p 9092:9092 \
aghorbani/goai [--load-data] [--jupyter-args=<arguments for jupyter>]
--load-data: will lead to load the sample data into database.--jupyter-args: specify arguments you want to pass to jupyter notebook.When all running fine, you can reach
Many time it is desirable to have data directories to be on the host volume. With the following command you can mount host directories for database data and jupyter notebook.
nvidia-docker run -it --rm \
-p 8888:8888 \
-p 9092:9092 \
-v /PATH/TO/LOCAL/NB-DIR/:/home/appuser/notebooks/mein/ \
-v /PATH/TO/LOCAL/DATA-DIR/:/opt/mapd/data/ \
aghorbani/goai [--load-data] [--jupyter-args=<arguments for jupyter>]
Content type
Image
Digest
Size
3.1 GB
Last updated
about 9 years ago
docker pull aghorbani/goai