简体   繁体   中英

Jupyter Docker on Google Cloud

I would like to run a Jupyter notebook from a docker image on GCP. Specifically I would like to run the one from kaggle/python . On my local machine I can get this working with docker pull kaggle/python and then the following docker cli command:

docker run -v $PWD:/tmp/working -w=/tmp/working -p 8888:8888 --rm -it kaggle/python jupyter notebook --no-browser --ip="0.0.0.0" --notebook-dir=/tmp/working/src

I do not want to use a gcloud cli command. How do I map this command to the GUI in GCP? I wan't to run this on Google Containerized OS:

在此处输入图片说明

You can now use docker containers to your custom notebook environment on GCP's AI Platform Notebooks. That might serve your means

They offer a base container that you can modify to fit your needs and then use as your active notebook environment

You can find more info about them here: https://cloud.google.com/ml-engine/docs/using-containers

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM