LoginSignup
0
1

More than 5 years have passed since last update.

DockerでJupyter

Last updated at Posted at 2017-04-08

Dockerのバージョン

Version 17.03.1-ce-mac5 (16048)
Channel: stable
b18e2a50cc

Docker Image

continuumio/anaconda3

コマンドラインから起動する方法

「-v ~:/opt/notebooks」によってMacのホームディレクトリがノートブックのホームディレクトリとなります

docker run -v ~:/opt/notebooks -i -t -p 8888:8888 continuumio/anaconda3 /bin/bash -c "/opt/conda/bin/conda install jupyter -y --quiet && /opt/conda/bin/jupyter notebook --notebook-dir=/opt/notebooks --ip='*' --port=8888 --no-browser"

ブラウザからノートブックを起動します

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1