1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00
dockerfiles/jupyter
2020-04-22 18:17:32 +08:00
..
docker-compose.yml update jupyter 2020-04-22 18:17:32 +08:00
README.md update jupyter 2020-04-22 18:17:32 +08:00

jupyter

Minimal Jupyter Notebook Stack

docker-compose.yml

notebook:
  image: jupyter/minimal-notebook
  ports:
    - "8888:8888"
  volumes:
    - ./data:/home/jovyan
  restart: unless-stopped

up and running

$ cd ~/fig/jupyter/
$ mkdir -p data/.jupyter
$ chown -R 1000:100 data
$ docker-compose up -d
$ curl http://127.0.0.1:8888

reset password

$ docker-compose exec notebook bash
>>> jupyter notebook password
Enter password: ******
Verify password: ******
[NotebookPasswordApp] Wrote hashed password to /home/jovyan/.jupyter/jupyter_notebook_config.json
$ docker-compose restart

without password

File: ./data/.jupyter/jupyter_notebook_config.json

{
  "NotebookApp": {
    "token": "",
    "password": ""
  }
}

nginx config