目录安装 jupyterdocker 端口映射安装 jupyter
pip install jupyter
编写脚本运行:
#!/bin/bash
# run_jupyter.sh
jupyter notebook --no-browser --ip 0.0.0.0 --port 8888 --allow-root > .log 2>&1 &
可以把这个脚本加入开机运行
docker 端口映射
先把安装好jupyter的容器提交
docker commit -a "作者" -m "add ...