diff --git a/AI/image-list.yml b/AI/image-list.yml index da4f69da255bf454d52d63ab6238d264ad9c478b..0af916e2f7169990a9db76051956e512d91ec784 100644 --- a/AI/image-list.yml +++ b/AI/image-list.yml @@ -42,8 +42,6 @@ images: searchqna: opea/searchqna searchqna-ui: opea/searchqna-ui speecht5: opea/speecht5 - text2image: opea/text2image - text2image-ui: opea/text2image-ui translation-ui: opea/translation-ui translation: opea/translation tts: opea/tts diff --git a/Database/image-list.yml b/Database/image-list.yml index 63f0dba01656943ca73525ba43067042038135cb..3a071a20d2688e7baf35ac3bc50d6f8ca4f4860f 100644 --- a/Database/image-list.yml +++ b/Database/image-list.yml @@ -6,7 +6,6 @@ images: redis: redis clickhouse: clickhouse influxdb: influxdb - pymilvus: pymilvus mongoose: mongoose orientdb: orientdb phoenix: phoenix diff --git a/Database/pymilvus/2.5.6/24.03-lts-sp1/Dockerfile b/Database/pymilvus/2.5.6/24.03-lts-sp1/Dockerfile deleted file mode 100644 index 85e9b64d44cb040e92d4f67dce462e7a7b249c81..0000000000000000000000000000000000000000 --- a/Database/pymilvus/2.5.6/24.03-lts-sp1/Dockerfile +++ /dev/null @@ -1,6 +0,0 @@ -ARG BASE=openeuler/pypi:latest - -FROM ${BASE} -ARG VERSION=2.5.6 - -RUN pip3 install pymilvus==${VERSION} diff --git a/Database/pymilvus/README.md b/Database/pymilvus/README.md deleted file mode 100644 index d9aa7d3555b1d2470a299d7facbe8a2994a870e5..0000000000000000000000000000000000000000 --- a/Database/pymilvus/README.md +++ /dev/null @@ -1,55 +0,0 @@ -# Quick reference - -- The official Milvus docker image. - -- Maintained by: [openEuler CloudNative SIG](https://gitee.com/openeuler/cloudnative). - -- Where to get help: [openEuler CloudNative SIG](https://gitee.com/openeuler/cloudnative), [openEuler](https://gitee.com/openeuler/community). - -# Milvus | openEuler -Current Milvus docker images are built on the [openEuler](https://repo.openeuler.org/). This repository is free to use and exempted from per-user rate limits. - -Milvus is a high-performance, cloud-native vector database built for scalable vector ANN search. - -Read more on [Milvus Website](https://milvus.io/docs). - -# Supported tags and respective Dockerfile links -The tag of each `pymilvus` docker image is consist of the version of `pymilvus` and the version of basic image. The details are as follows - -| Tag | Currently | Architectures | -|-------------------------------------------------------------------------------------------------------------------------------------|-------------|------------------| -| [2.5.6-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Database/pymilvus/2.5.6/24.03-lts-sp1/Dockerfile) | Milvus 2.5.6 on openEuler 24.03-LTS-SP1 | amd64, arm64 | - -# Usage -In this usage, users can select the corresponding `{Tag}` based on their requirements. - -- Pull the `openeuler/pymilvus` image from docker - - ```bash - docker pull openeuler/pymilvus:{Tag} - ``` - -- Example: Connect to Milvus Lite - - ``` - from pymilvus import MilvusClient - - client = MilvusClient(uri="./milvus_demo.db") - ``` - After running the code above, a new file called `milvus_demo.db` will be generated in your current working directory. - -- Notes - * The same API works for Milvus Lite, Milvus Standalone, Milvus Distributed, and Zilliz Cloud. - * The only difference is the `uri`: - * For Milvus Lite, use a local file path, e.g. `./milvus_demo.db` - * For Milvus Standalone for Milvus Distributed, use the server endpoint and your token, e.g.: - ``` - client = MilvusClient( - uri="http://localhost:19530", - token="username:password" - ) - ``` - * The local `.db` file is portable, You can copy it to another location to persist or back up your data. - -# Question and answering -If you have any questions or want to use some special features, please submit an issue or a pull request on [openeuler-docker-images](https://gitee.com/openeuler/openeuler-docker-images). \ No newline at end of file diff --git a/Database/pymilvus/doc/image-info.yml b/Database/pymilvus/doc/image-info.yml deleted file mode 100644 index eab0d0e5c00cda6000e8ce41bbefb777634bde29..0000000000000000000000000000000000000000 --- a/Database/pymilvus/doc/image-info.yml +++ /dev/null @@ -1,50 +0,0 @@ -name: pymilvus -category: database -description: Milvus 是一款开源的向量数据库,专为 AI 应用和向量相似度搜索设计。 -environment: | - 本应用在Docker环境中运行,安装Docker执行如下命令 - ``` - yum install -y docker - ``` -tags: | - pymilvus镜像的Tag由其版本信息和基础镜像版本信息组成,详细内容如下 - - | Tag | Currently | Architectures | - |----------|-------------|------------------| - |[2.5.6-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/pymilvus/2.5.6/24.03-lts-sp1/Dockerfile)| pymilvus 2.5.6 on openEuler 24.03-LTS-SP1 | amd64, arm64 | - -download: | - 拉取镜像到本地 - ``` - docker pull openeuler/pymilvus:{Tag} - ``` - -usage: | - - 示例: 连接到 Milvus Lite - - ``` - from pymilvus import MilvusClient - - client = MilvusClient(uri="./milvus_demo.db") - ``` - 运行上述代码段后,将在当前文件夹下生成名为milvus_demo.db 的数据库文件。 - - - 注意 - * 同样的 API 也适用于 Milvus Standalone、Milvus Distributed 和 Zilliz Cloud。 - * 唯一区别是 `uri` 的不同:: - * 对于 Milvus Lite,使用本地文件路径,例如 `./milvus_demo.db` - * 对于 `Milvus Standalone` 或 `Milvus Distributed`,使用服务器的端点地址和你的 token,例如: - ``` - client = MilvusClient( - uri="http://localhost:19530", - token="username:password" - ) - ``` - * 本地的 `.db` 文件是可移植的,你可以将它复制到其他位置来持久化或备份你的数据。 - -license: Apache-2.0 license -similar_packages: - - FAISS: FAISS(Facebook AI Similarity Search)是由 Meta(Facebook)AI 团队 开发的高性能向量相似度搜索库,专为大规模向量数据的快速检索而优化。 -dependency: - - python - - llvm diff --git a/Database/pymilvus/doc/picture/logo.png b/Database/pymilvus/doc/picture/logo.png deleted file mode 100644 index 242a17281ce1789be88a87b8fb84358b728b2dc7..0000000000000000000000000000000000000000 Binary files a/Database/pymilvus/doc/picture/logo.png and /dev/null differ diff --git a/Database/pymilvus/meta.yml b/Database/pymilvus/meta.yml deleted file mode 100644 index d9127c5d36c76790463c107ea9ba3b5cca07b25f..0000000000000000000000000000000000000000 --- a/Database/pymilvus/meta.yml +++ /dev/null @@ -1,2 +0,0 @@ -2.5.6-oe2403sp1: - path: 2.5.6/24.03-lts-sp1/Dockerfile \ No newline at end of file diff --git a/Others/conda/25.1.1/24.03-lts-sp2/Dockerfile b/Others/conda/25.1.1/24.03-lts-sp2/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..552087cfe430721ba499841e283ef3866da4625c --- /dev/null +++ b/Others/conda/25.1.1/24.03-lts-sp2/Dockerfile @@ -0,0 +1,23 @@ +ARG BASE=openeuler/openeuler:24.03-lts-sp1 +FROM ${BASE} + +ARG TARGETARCH +ARG BUILDARCH +ARG VERSION=25.1.1-1 + +RUN yum update -y && \ + yum install -y wget&& \ + yum clean all && \ + rm -rf /var/cache/yum + +RUN mkdir -p /var/log/conda && \ + chmod 777 /var/log/conda + +RUN if [ "$TARGETARCH" = "amd64" ]; then \ + BUILDARCH="x86_64"; \ + elif [ "$TARGETARCH" = "arm64" ]; then \ + BUILDARCH="aarch64"; \ + fi; \ + wget https://repo.anaconda.com/miniconda/Miniconda3-py311_${VERSION}-Linux-${BUILDARCH}.sh -O ~/miniconda.sh && \ + bash ~/miniconda.sh -b -p /usr/local/miniconda && \ + rm -f ~/miniconda.sh diff --git a/Others/conda/meta.yml b/Others/conda/meta.yml index e77c859736045f5d6d38ccf6c52f52c523c40272..cd84cf430214cd6d51a4c86e392ba64d090d735b 100644 --- a/Others/conda/meta.yml +++ b/Others/conda/meta.yml @@ -4,3 +4,5 @@ path: 25.1.1/24.03-lts/Dockerfile 25.1.1-oe2403sp1: path: 25.1.1/24.03-lts-sp1/Dockerfile +25.1.1-oe2403sp2: + path: 25.1.1/24.03-lts-sp2/Dockerfile \ No newline at end of file diff --git a/Others/image-list.yml b/Others/image-list.yml index f06337212695ba4c441109e7adab9e38fa75bb61..d392f2f73481533da34e6427426d27b312f55245 100644 --- a/Others/image-list.yml +++ b/Others/image-list.yml @@ -74,8 +74,6 @@ images: musl: musl mesa: mesa varnish: varnish - nemo: nemo - lammps: lammps haproxy: haproxy jetty: jetty keepalived: keepalived