
本Docker镜像提供了一个预配置的Jupyter notebook环境,专门用于Objectiv Bach的实验与开发。Objectiv Bach是一个用于数据分析和模型构建的工具,该镜像通过集成Jupyter notebook,为用户提供了便捷的交互式环境,可直接进行代码编写、数据处理和模型验证。
通过以下命令启动容器并访问Jupyter notebook:
bashdocker run -p 8888:8888 objectiv/bach-jupyter
启动后,终端会输出类似以下内容的访问链接:
To access the notebook, open this file in a browser: file:///home/jovyan/.local/share/jupyter/runtime/nbserver-1-open.html Or copy and paste one of these URLs: http://127.0.0.1:8888/?token=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
复制包含token的URL在浏览器中打开,即可进入Jupyter notebook界面。
如需保存工作内容,可通过挂载本地目录到容器内的工作目录:
bashdocker run -p 8888:8888 -v /本地路径:/home/jovyan/work objectiv/bach-jupyter
可通过环境变量自定义Jupyter notebook配置:
JUPYTER_TOKEN:设置访问密码(token),例如:
bashdocker run -p 8888:8888 -e JUPYTER_TOKEN=mysecretpassword objectiv/bach-jupyter
JUPYTER_PORT:修改容器内Jupyter服务端口(需同步修改端口映射)创建docker-compose.yml文件:
yamlversion: '3' services: bach-jupyter: image: objectiv/bach-jupyter ports: - "8888:8888" volumes: - ./workspace:/home/jovyan/work environment: - JUPYTER_TOKEN=mysecuretoken restart: unless-stopped
使用以下命令启动:
bashdocker-compose up -d





探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式
通过 Docker 登录认证访问私有仓库
无需登录使用专属域名
Kubernetes 集群配置 Containerd
K3s 轻量级 Kubernetes 镜像加速
VS Code Dev Containers 配置
Podman 容器引擎配置
HPC 科学计算容器配置
ghcr、Quay、nvcr 等镜像仓库
Harbor Proxy Repository 对接专属域名
Portainer Registries 加速拉取
Nexus3 Docker Proxy 内网缓存
需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单
manifest unknown
no matching manifest(架构)
invalid tar header(解压)
TLS 证书失败
DNS 超时
410 Gone 排查
402 与流量用尽
401 认证失败
429 限流
D-Bus 凭证提示
413 与超大单层
来自真实用户的反馈,见证轩辕镜像的优质服务