Bohrium Image Management

Data & APIs

Manage Bohrium container images via bohr CLI or open.bohrium.com API. Use when: user asks about listing/pulling/creating/deleting Docker images on Bohrium, or finding available public images. NOT for: node management, job submission, or project management.

Install

openclaw skills install bohrium-image

SKILL: Bohrium Image Management

Overview

Manage container images on the Bohrium platform. Prefer bohr CLI; fall back to the API for Dockerfile builds and version search.

Since 2023, Bohrium no longer supports VM jobs — container images are required.

Authentication

"bohrium-image": {
  "enabled": true,
  "apiKey": "YOUR_ACCESS_KEY",
  "env": { "ACCESS_KEY": "YOUR_ACCESS_KEY" }
}

Prerequisites: Install bohr CLI

# macOS
/bin/bash -c "$(curl -fsSL https://dp-public.oss-cn-beijing.aliyuncs.com/bohrctl/1.0.0/install_bohr_mac_curl.sh)"
# Linux
/bin/bash -c "$(curl -fsSL https://dp-public.oss-cn-beijing.aliyuncs.com/bohrctl/1.0.0/install_bohr_linux_curl.sh)"
source ~/.bashrc && export PATH="$HOME/.bohrium:$PATH"

List Images

bohr image list                 # Custom images (table)
bohr image list --json          # JSON

# Public images by type
bohr image list -t "Basic Image"
bohr image list -t "DeePMD-kit"
bohr image list -t "LAMMPS"
bohr image list -t "ABACUS"
bohr image list -t "CP2K"
bohr image list -t "GROMACS"
bohr image list -t "Uni-Mol"

JSON fields: imageId, name, url, status (available/building), creatorName


Quick Reference: Public Images

Base Images

ScenarioImage
CPUregistry.dp.tech/dptech/ubuntu:20.04-py3.10
CPU + Intel MPIregistry.dp.tech/dptech/ubuntu:20.04-py3.10-intel2022
GPUregistry.dp.tech/dptech/ubuntu:20.04-py3.10-cuda11.6
GPU + Intel MPIregistry.dp.tech/dptech/ubuntu:20.04-py3.10-intel2022-cuda11.6

Scientific Software

SoftwareImage
DeePMD-kitregistry.dp.tech/dptech/deepmd-kit:2.1.5-cuda11.6
DPGENregistry.dp.tech/dptech/dpgen:0.10.6
LAMMPSregistry.dp.tech/dptech/lammps:29Sep2021
GROMACSregistry.dp.tech/dptech/gromacs:2022.2
Quantum-Espressoregistry.dp.tech/dptech/quantum-espresso:7.1
CP2Kregistry.dp.tech/dptech/cp2k:7.1
ABACUSregistry.dp.tech/dptech/abacus:3.0.0

Pre-installed Software (All Public Images)

CategorySoftware
Pythonpython3.10, pip, Anaconda, Jupyter Lab
File toolswget, curl, unzip, rsync, tree, git
Editorsemacs, vim
Build toolscmake, build-essential (GNU)
Monitoringhtop, ncdu, net-tools
DP toolsBohrium CLI, DP-Dispatcher, dpdata

VM-to-Container Image Mapping

VM ImageContainer Image
LBG_DeePMD-kit_2.1.4_v1registry.dp.tech/dptech/deepmd-kit:2.1.5-cuda11.6
LBG_DP-GEN_0.10.6_v3registry.dp.tech/dptech/dpgen:0.10.6
LBG_LAMMPS_stable_23Jun2022_v1registry.dp.tech/dptech/lammps:29Sep2021
gromacs-dp:2020.2registry.dp.tech/dptech/gromacs:2022.2
LBG_Quantum-Espresso_7.1registry.dp.tech/dptech/quantum-espresso:7.1
LBG_Common_v1/v2registry.dp.tech/dptech/ubuntu:20.04-py3.10-cuda11.6
LBG_oneapi_2021_v1registry.dp.tech/dptech/ubuntu:20.04-py3.10-intel2022-cuda11.6

Pull Image to Local

bohr image pull registry.dp.tech/dptech/deepmd-kit:3.0.0b3-cuda12.1

Requires Docker running locally. Only public and your own custom images are supported.

Manual Docker Pull (Alternative)

Replace domain with registry.bohrium.dp.tech (not registry.dp.tech):

docker login registry.bohrium.dp.tech
docker pull registry.bohrium.dp.tech/dptech/ubuntu:22.04-py3.10-intel2022
# Push is not supported

Delete Custom Images

bohr image delete 121510
bohr image delete 121510 121395         # Batch

Image Cache

ScenarioDetails
Public imagesPersistent cache; no extra pull time
New custom imagesCache builds in 10-30 min; wait before using
Unused 30 daysCache expires; re-pull on next use
With cacheCPU ~20s boot, GPU ~40s boot
Without cache+10-30 min for image pull

API Supplement (CLI Unsupported)

Search Public Image Versions

import os, requests
AK = os.environ.get("ACCESS_KEY", "")
HEADERS = {"accessKey": AK}

r = requests.get("https://open.bohrium.com/openapi/v2/image/public/version/search",
    headers=HEADERS, params={"keyword": "deepmd", "page": 1, "pageSize": 5})
# Returns: {items: [{version, resourceType, size, url, imageName}, ...]}

Browse Public Images

r = requests.get("https://open.bohrium.com/openapi/v2/image/public",
    headers=HEADERS, params={"page": 1, "pageSize": 10})

r = requests.get(f"https://open.bohrium.com/openapi/v2/image/public/{image_id}/version",
    headers=HEADERS, params={"page": 1, "pageSize": 10})

Build from Dockerfile

HEADERS_JSON = {**HEADERS, "Content-Type": "application/json"}

# Note: dockerfile field must be base64-encoded
import base64
dockerfile_content = "FROM ubuntu:22.04\nRUN apt-get update && apt-get install -y python3"
dockerfile_b64 = base64.b64encode(dockerfile_content.encode()).decode()

r = requests.post("https://open.bohrium.com/openapi/v2/image/private",
    headers=HEADERS_JSON, json={
        "name": "my-image", "projectId": 154, "device": "container",
        "desc": "Custom training image", "buildType": 1,
        "dockerfile": dockerfile_b64,
    })

# Validate Dockerfile (also requires base64)
check_b64 = base64.b64encode(b"FROM ubuntu:22.04\nRUN apt-get update").decode()
requests.post("https://open.bohrium.com/openapi/v2/image/dockerfile/check",
    headers=HEADERS_JSON, json={"dockerfile": check_b64})

Private Image Management

# List (must include device and type parameters)
r = requests.get("https://open.bohrium.com/openapi/v2/image/private",
    headers=HEADERS, params={"device": "container", "type": "private", "page": 1, "pageSize": 10})
# Returns: {items: [{id, name, url, status, buildType, creatorName, projectName, ...}]}

# Share / unshare
requests.post(f"https://open.bohrium.com/openapi/v2/image/{image_id}/share", headers=HEADERS_JSON)
requests.delete(f"https://open.bohrium.com/openapi/v2/image/{image_id}/share?device=container", headers=HEADERS)

Custom Image Creation

After installing software on a container node, save the environment as a custom image via the Bohrium web UI. Only the system disk is saved; /personal and /share are excluded.

Quotas

ResourceLimit
Custom images10 per project

Unavailable Endpoints

EndpointVersionReason
GET v1/image/publicv1Caught by /:imageId route
GET v1/image/privatev1Same
POST v2/image/version/addv2Not registered
DELETE v2/image/version/{versionId}v2Not registered

Troubleshooting

ProblemCauseSolution
bohr image pull failsDocker not runningStart Docker Desktop
v2 private param errorMissing required paramsAdd device=container&type=private parameters
no permissionNot image creatorCan only manage own images
v1 /public parse errorRoute conflictUse v2 endpoints
Wrong image addressUsed name, not full URLMust use registry.dp.tech/dptech/xxx:tag
Slow custom image cacheCache takes 10-30 minWait 30 min after build
No Docker in containerSecurity restrictionUse VM image LBG_Common_v2
Create returns decode errdockerfile not base64 encodedUse base64.b64encode(content.encode()).decode()