Skip to main content

Offline Resources

tip
  • After downloading the offline mirror image file and uploading it to the corresponding deployment server, you must import it to make it usable.
  • For specific import steps, please refer to the examples provided at the bottom of this document.
NameDownload
mingdaoyun-hap
HAP Microservice
https://pdpublic.mingdao.com/private-deployment/offline/mingdaoyun-hap-linux-amd64-7.4.0.tar.gz
mingdaoyun-hdp
HDP Microservice
https://pdpublic.mingdao.com/private-deployment/offline/mingdaoyun-hdp-linux-amd64-1.2.0.tar.gz
mingdaoyun-core
Core Microservice
https://pdpublic.mingdao.com/private-deployment/offline/mingdaoyun-core-linux-amd64-7.4.0.tar.gz
mingdaoyun-rag
Rag service
https://pdpublic.mingdao.com/private-deployment/offline/mingdaoyun-rag-linux-amd64-1.0.0.tar.gz
mingdaoyun-file
File storage
https://pdpublic.mingdao.com/private-deployment/offline/mingdaoyun-file-linux-amd64-1.7.0.tar.gz
mingdaoyun-flink
Data pipeline
https://pdpublic.mingdao.com/private-deployment/offline/mingdaoyun-flink-linux-amd64-1.19.720.tar.gz
mingdaoyun-doc
Document preview, based on OnlyOffice
https://pdpublic.mingdao.com/private-deployment/offline/mingdaoyun-doc-linux-amd64-2.0.0.tar.gz
mingdaoyun-ldoc
Document preview, based on LibreOffice
https://pdpublic.mingdao.com/private-deployment/offline/mingdaoyun-ldoc-linux-amd64-2.0.2.tar.gz
mingdaoyun-sc
Storage components
https://pdpublic.mingdao.com/private-deployment/offline/mingdaoyun-sc-linux-amd64-3.2.0.tar.gz
mingdaoyun-sc-upgrade
Storage component upgrade secondary mirror
https://pdpublic.mingdao.com/private-deployment/offline/mingdaoyun-sc-upgrade-linux-amd64-1.0.0.tar.gz
mingdaoyun-command
Code Block
https://pdpublic.mingdao.com/private-deployment/offline/mingdaoyun-command-linux-amd64-node1018-python36.tar.gz
mingdaoyun-dataclean-app
Application data clean
https://pdpublic.mingdao.com/private-deployment/offline/mingdaoyun-dataclean-app-linux-amd64-1.0.0.tar.gz
mingdaoyun-archivetools
Log data archive
https://pdpublic.mingdao.com/private-deployment/offline/mingdaoyun-archivetools-linux-amd64-1.0.5.tar.gz
mingdaoyun-etcd
ectd
https://pdpublic.mingdao.com/private-deployment/offline/mingdaoyun-etcd-linux-amd64-v3.5.25.tar.gz
mingdaoyun-minio
MinIO
https://pdpublic.mingdao.com/private-deployment/offline/mingdaoyun-minio-linux-amd64-RELEASE.2025-04-22T22-12-26Z.tar.gz
mingdaoyun-milvus
Milvus
https://pdpublic.mingdao.com/private-deployment/offline/mingdaoyun-milvus-linux-amd64-v2.6.14.tar.gz
ops-allinone
Ops Platform (single image, includes all components since 1.4.0)
⚠️ The offline bundle may lag behind the online image
https://pdpublic.mingdao.com/private-deployment/offline/ops-allinone-linux-amd64-1.5.1.tar.gz
  • For a first-time offline deployment in standalone mode, HAP only needs the four offline image packages mingdaoyun-hap, mingdaoyun-doc, mingdaoyun-sc, and mingdaoyun-command by default. Upload them to the server, then load them with docker load -i xxx.tar.gz.

  • To download an earlier version of an offline image package, change only the version number in its download link.

  • If the deployment environment limits the upload size of a single file and prevents you from uploading a large offline image package, use the following method to split the package before uploading it, then restore the original file on the server.

    👉 Reference: Split and Restore an Offline Image Package

    Using the offline image package mingdaoyun-hap-linux-amd64-7.4.0.tar.gz as an example:

    1. Calculate the MD5 checksum locally for later integrity verification.

      md5sum mingdaoyun-hap-linux-amd64-7.4.0.tar.gz
    2. Use the split command in the local environment to split the image package. The following example creates 800 MB parts with numeric suffixes:

      split -b 800M -d -a 3 mingdaoyun-hap-linux-amd64-7.4.0.tar.gz mingdaoyun-hap-linux-amd64-7.4.0.tar.gz.
      • -b: Specifies the size of each part. Supported units include B, K, and M.
      • -d: Uses numeric suffixes for the parts.
      • -a: Specifies the suffix length. This example uses three digits.
    3. Upload all parts to the same directory on the server.

    4. Merge the parts on the server to restore the original image package.

      cat mingdaoyun-hap-linux-amd64-7.4.0.tar.gz.* > mingdaoyun-hap-linux-amd64-7.4.0.tar.gz
    5. Calculate the MD5 checksum again. Once it matches the value calculated before splitting, import the image.

      md5sum mingdaoyun-hap-linux-amd64-7.4.0.tar.gz

After downloading and uploading the image package to the corresponding deployment server, import the image using the following command.

  1. Load image

    docker load -i xxx.tar.gz
  2. View image

    docker images