docker.io/langgenius/dify-api:1.7.2 linux/arm64

docker.io/langgenius/dify-api:1.7.2 - 国内下载镜像源 浏览次数:34 安全受验证的发布者-Dify 温馨提示: 这是一个 linux/arm64 系统架构镜像
dify-api - 一个用于 API 的容器镜像,可能提供了 dify 的 API 服务和功能。
源镜像 docker.io/langgenius/dify-api:1.7.2
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-api:1.7.2-linuxarm64
镜像ID sha256:f47c0a5f1a6a40b51c4a75379fc0caa9b6f708489f2823c8444208270ecae3d7
镜像TAG 1.7.2-linuxarm64
大小 2.18GB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD
启动入口 /bin/bash /entrypoint.sh
工作目录 /app/api
OS/平台 linux/arm64
浏览量 34 次
贡献者
镜像创建 2025-08-11T09:18:56.869481025Z
同步时间 2025-08-14 13:57
更新时间 2025-08-17 19:22
开放端口
5001/tcp
环境变量
PATH=/app/api/.venv/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin LANG=en_US.UTF-8 GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305 PYTHON_VERSION=3.12.11 PYTHON_SHA256=c30bb24b7f1e9a19b11b55a546434f74e739bb4c271a3e3a80ff4380d49f7adb UV_VERSION=0.7.11 FLASK_APP=app.py EDITION=SELF_HOSTED DEPLOY_ENV=PRODUCTION CONSOLE_API_URL=http://127.0.0.1:5001 CONSOLE_WEB_URL=http://127.0.0.1:3000 SERVICE_API_URL=http://127.0.0.1:5001 APP_WEB_URL=http://127.0.0.1:3000 TZ=UTC LC_ALL=en_US.UTF-8 PYTHONIOENCODING=utf-8 VIRTUAL_ENV=/app/api/.venv TIKTOKEN_CACHE_DIR=/app/api/.tiktoken_cache COMMIT_SHA=0baccb9e829a8bed58387ca75a22ed6801ae3e1f
镜像标签
2025-08-11T09:17:48.013Z: org.opencontainers.image.created Production-ready platform for agentic workflow development.: org.opencontainers.image.description NOASSERTION: org.opencontainers.image.licenses 0baccb9e829a8bed58387ca75a22ed6801ae3e1f: org.opencontainers.image.revision https://github.com/langgenius/dify: org.opencontainers.image.source dify: org.opencontainers.image.title https://github.com/langgenius/dify: org.opencontainers.image.url 1.7.2: org.opencontainers.image.version

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-api:1.7.2-linuxarm64
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-api:1.7.2-linuxarm64  docker.io/langgenius/dify-api:1.7.2

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-api:1.7.2-linuxarm64
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-api:1.7.2-linuxarm64  docker.io/langgenius/dify-api:1.7.2

Shell快速替换命令

sed -i 's#langgenius/dify-api:1.7.2#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-api:1.7.2-linuxarm64#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-api:1.7.2-linuxarm64 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-api:1.7.2-linuxarm64  docker.io/langgenius/dify-api:1.7.2'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-api:1.7.2-linuxarm64 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-api:1.7.2-linuxarm64  docker.io/langgenius/dify-api:1.7.2'

镜像构建历史


# 2025-08-11 17:18:56  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/bin/bash" "/entrypoint.sh"]
                        
# 2025-08-11 17:18:56  0.00B 设置环境变量 COMMIT_SHA
ENV COMMIT_SHA=0baccb9e829a8bed58387ca75a22ed6801ae3e1f
                        
# 2025-08-11 17:18:56  0.00B 定义构建参数
ARG COMMIT_SHA=0baccb9e829a8bed58387ca75a22ed6801ae3e1f
                        
# 2025-08-11 17:18:56  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c chmod +x /entrypoint.sh # buildkit
                        
# 2025-08-11 17:18:56  1.72KB 复制新文件或目录到容器中
COPY docker/entrypoint.sh /entrypoint.sh # buildkit
                        
# 2025-08-11 17:18:56  13.50MB 复制新文件或目录到容器中
COPY . /app/api/ # buildkit
                        
# 2025-08-11 17:18:56  3.28MB 执行命令并创建新的镜像层
RUN /bin/sh -c python -c "import tiktoken; tiktoken.encoding_for_model('gpt2')" # buildkit
                        
# 2025-08-11 17:18:54  0.00B 设置环境变量 TIKTOKEN_CACHE_DIR
ENV TIKTOKEN_CACHE_DIR=/app/api/.tiktoken_cache
                        
# 2025-08-11 17:18:54  67.89MB 执行命令并创建新的镜像层
RUN /bin/sh -c python -c "import nltk; nltk.download('punkt'); nltk.download('averaged_perceptron_tagger')" # buildkit
                        
# 2025-08-11 17:18:52  0.00B 设置环境变量 PATH
ENV PATH=/app/api/.venv/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
                        
# 2025-08-11 17:18:52  1.65GB 复制新文件或目录到容器中
COPY /app/api/.venv /app/api/.venv # buildkit
                        
# 2025-08-11 10:21:08  0.00B 设置环境变量 VIRTUAL_ENV
ENV VIRTUAL_ENV=/app/api/.venv
                        
# 2025-08-11 10:21:08  246.45MB 执行命令并创建新的镜像层
RUN /bin/sh -c apt-get update     && apt-get install -y --no-install-recommends         curl nodejs libgmp-dev libmpfr-dev libmpc-dev         expat libldap-2.5-0 perl libsqlite3-0 zlib1g         fonts-noto-cjk         media-types         libmagic1     && apt-get autoremove -y     && rm -rf /var/lib/apt/lists/* # buildkit
                        
# 2025-08-11 15:41:36  0.00B 设置工作目录为/app/api
WORKDIR /app/api
                        
# 2025-08-11 09:34:14  0.00B 设置环境变量 PYTHONIOENCODING
ENV PYTHONIOENCODING=utf-8
                        
# 2025-08-11 09:34:14  0.00B 设置环境变量 LC_ALL
ENV LC_ALL=en_US.UTF-8
                        
# 2025-08-11 09:34:14  0.00B 设置环境变量 LANG
ENV LANG=en_US.UTF-8
                        
# 2025-08-11 09:34:14  0.00B 设置环境变量 TZ
ENV TZ=UTC
                        
# 2025-08-11 09:34:14  0.00B 声明容器运行时监听的端口
EXPOSE map[5001/tcp:{}]
                        
# 2025-08-11 09:34:14  0.00B 设置环境变量 APP_WEB_URL
ENV APP_WEB_URL=http://127.0.0.1:3000
                        
# 2025-08-11 09:34:14  0.00B 设置环境变量 SERVICE_API_URL
ENV SERVICE_API_URL=http://127.0.0.1:5001
                        
# 2025-08-11 09:34:14  0.00B 设置环境变量 CONSOLE_WEB_URL
ENV CONSOLE_WEB_URL=http://127.0.0.1:3000
                        
# 2025-08-11 09:34:14  0.00B 设置环境变量 CONSOLE_API_URL
ENV CONSOLE_API_URL=http://127.0.0.1:5001
                        
# 2025-08-11 09:34:14  0.00B 设置环境变量 DEPLOY_ENV
ENV DEPLOY_ENV=PRODUCTION
                        
# 2025-08-11 09:34:14  0.00B 设置环境变量 EDITION
ENV EDITION=SELF_HOSTED
                        
# 2025-08-11 09:34:14  0.00B 设置环境变量 FLASK_APP
ENV FLASK_APP=app.py
                        
# 2025-08-11 09:34:14  45.11MB 执行命令并创建新的镜像层
RUN /bin/sh -c pip install --no-cache-dir uv==${UV_VERSION} # buildkit
                        
# 2025-08-11 09:34:14  0.00B 设置环境变量 UV_VERSION
ENV UV_VERSION=0.7.11
                        
# 2025-08-11 09:34:11  0.00B 设置工作目录为/app/api
WORKDIR /app/api
                        
# 2025-06-04 08:40:01  0.00B 设置默认要执行的命令
CMD ["python3"]
                        
# 2025-06-04 08:40:01  36.00B 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 	for src in idle3 pip3 pydoc3 python3 python3-config; do 		dst="$(echo "$src" | tr -d 3)"; 		[ -s "/usr/local/bin/$src" ]; 		[ ! -e "/usr/local/bin/$dst" ]; 		ln -svT "$src" "/usr/local/bin/$dst"; 	done # buildkit
                        
# 2025-06-04 08:40:01  43.59MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 		savedAptMark="$(apt-mark showmanual)"; 	apt-get update; 	apt-get install -y --no-install-recommends 		dpkg-dev 		gcc 		gnupg 		libbluetooth-dev 		libbz2-dev 		libc6-dev 		libdb-dev 		libffi-dev 		libgdbm-dev 		liblzma-dev 		libncursesw5-dev 		libreadline-dev 		libsqlite3-dev 		libssl-dev 		make 		tk-dev 		uuid-dev 		wget 		xz-utils 		zlib1g-dev 	; 		wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz"; 	echo "$PYTHON_SHA256 *python.tar.xz" | sha256sum -c -; 	wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc"; 	GNUPGHOME="$(mktemp -d)"; export GNUPGHOME; 	gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$GPG_KEY"; 	gpg --batch --verify python.tar.xz.asc python.tar.xz; 	gpgconf --kill all; 	rm -rf "$GNUPGHOME" python.tar.xz.asc; 	mkdir -p /usr/src/python; 	tar --extract --directory /usr/src/python --strip-components=1 --file python.tar.xz; 	rm python.tar.xz; 		cd /usr/src/python; 	gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; 	./configure 		--build="$gnuArch" 		--enable-loadable-sqlite-extensions 		--enable-optimizations 		--enable-option-checking=fatal 		--enable-shared 		$(test "$gnuArch" != 'riscv64-linux-musl' && echo '--with-lto') 		--with-ensurepip 	; 	nproc="$(nproc)"; 	EXTRA_CFLAGS="$(dpkg-buildflags --get CFLAGS)"; 	LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"; 	LDFLAGS="${LDFLAGS:--Wl},--strip-all"; 		arch="$(dpkg --print-architecture)"; arch="${arch##*-}"; 		case "$arch" in 			amd64|arm64) 				EXTRA_CFLAGS="${EXTRA_CFLAGS:-} -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer"; 				;; 			i386) 				;; 			*) 				EXTRA_CFLAGS="${EXTRA_CFLAGS:-} -fno-omit-frame-pointer"; 				;; 		esac; 	make -j "$nproc" 		"EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" 		"LDFLAGS=${LDFLAGS:-}" 	; 	rm python; 	make -j "$nproc" 		"EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" 		"LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" 		python 	; 	make install; 		cd /; 	rm -rf /usr/src/python; 		find /usr/local -depth 		\( 			\( -type d -a \( -name test -o -name tests -o -name idle_test \) \) 			-o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' -o -name 'libpython*.a' \) \) 		\) -exec rm -rf '{}' + 	; 		ldconfig; 		apt-mark auto '.*' > /dev/null; 	apt-mark manual $savedAptMark; 	find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec ldd '{}' ';' 		| awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' 		| sort -u 		| xargs -r dpkg-query --search 		| cut -d: -f1 		| sort -u 		| xargs -r apt-mark manual 	; 	apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; 	rm -rf /var/lib/apt/lists/*; 		export PYTHONDONTWRITEBYTECODE=1; 	python3 --version; 	pip3 --version # buildkit
                        
# 2025-06-04 08:40:01  0.00B 设置环境变量 PYTHON_SHA256
ENV PYTHON_SHA256=c30bb24b7f1e9a19b11b55a546434f74e739bb4c271a3e3a80ff4380d49f7adb
                        
# 2025-06-04 08:40:01  0.00B 设置环境变量 PYTHON_VERSION
ENV PYTHON_VERSION=3.12.11
                        
# 2025-06-04 08:40:01  0.00B 设置环境变量 GPG_KEY
ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305
                        
# 2025-06-04 08:40:01  9.18MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 	apt-get update; 	apt-get install -y --no-install-recommends 		ca-certificates 		netbase 		tzdata 	; 	rm -rf /var/lib/apt/lists/* # buildkit
                        
# 2025-06-04 08:40:01  0.00B 设置环境变量 LANG
ENV LANG=C.UTF-8
                        
# 2025-06-04 08:40:01  0.00B 设置环境变量 PATH
ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
                        
# 2025-06-04 08:40:01  97.21MB 
# debian.sh --arch 'arm64' out/ 'bookworm' '@1753056000'
                        
                    

镜像信息

{
    "Id": "sha256:f47c0a5f1a6a40b51c4a75379fc0caa9b6f708489f2823c8444208270ecae3d7",
    "RepoTags": [
        "langgenius/dify-api:1.7.2",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-api:1.7.2-linuxarm64"
    ],
    "RepoDigests": [
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-api@sha256:585f7566546507255c177e38e037bbd4a06b3d50252b273ed12e3cd3e1c8f020"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-08-11T09:18:56.869481025Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "ExposedPorts": {
            "5001/tcp": {}
        },
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/app/api/.venv/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "LANG=en_US.UTF-8",
            "GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305",
            "PYTHON_VERSION=3.12.11",
            "PYTHON_SHA256=c30bb24b7f1e9a19b11b55a546434f74e739bb4c271a3e3a80ff4380d49f7adb",
            "UV_VERSION=0.7.11",
            "FLASK_APP=app.py",
            "EDITION=SELF_HOSTED",
            "DEPLOY_ENV=PRODUCTION",
            "CONSOLE_API_URL=http://127.0.0.1:5001",
            "CONSOLE_WEB_URL=http://127.0.0.1:3000",
            "SERVICE_API_URL=http://127.0.0.1:5001",
            "APP_WEB_URL=http://127.0.0.1:3000",
            "TZ=UTC",
            "LC_ALL=en_US.UTF-8",
            "PYTHONIOENCODING=utf-8",
            "VIRTUAL_ENV=/app/api/.venv",
            "TIKTOKEN_CACHE_DIR=/app/api/.tiktoken_cache",
            "COMMIT_SHA=0baccb9e829a8bed58387ca75a22ed6801ae3e1f"
        ],
        "Cmd": null,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "/app/api",
        "Entrypoint": [
            "/bin/bash",
            "/entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": {
            "org.opencontainers.image.created": "2025-08-11T09:17:48.013Z",
            "org.opencontainers.image.description": "Production-ready platform for agentic workflow development.",
            "org.opencontainers.image.licenses": "NOASSERTION",
            "org.opencontainers.image.revision": "0baccb9e829a8bed58387ca75a22ed6801ae3e1f",
            "org.opencontainers.image.source": "https://github.com/langgenius/dify",
            "org.opencontainers.image.title": "dify",
            "org.opencontainers.image.url": "https://github.com/langgenius/dify",
            "org.opencontainers.image.version": "1.7.2"
        }
    },
    "Architecture": "arm64",
    "Os": "linux",
    "Size": 2177600928,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/aeabfb76b1d1131e1c1b0f0ed93e55d2c2fd9aaab0f59fcf7c3d836d9156661f/diff:/var/lib/docker/overlay2/012a492d2c90999f20da609d5de1339a34de0b20cce44972cd61ecca51953f43/diff:/var/lib/docker/overlay2/9b51a66763421345fc1d5312bd98963d834dc71a0a181b9a94b7287bd1ac6e90/diff:/var/lib/docker/overlay2/2d76fab14abc06c843385d95517dec8f929fc8cf6b499fbb4b41493219a633f4/diff:/var/lib/docker/overlay2/60fc851f2afc9c05ff30724aa86226b1fbc0b61b84b0aa91ce6909465f41028a/diff:/var/lib/docker/overlay2/9735d9da070f897858456afb39fc5530e9dbf7a93443d910918cfbd8b73ad60d/diff:/var/lib/docker/overlay2/c7dfda508569e898eb5d996e2c854148ab6a1933447bf06cab0ec04489bd6839/diff:/var/lib/docker/overlay2/fafded476f4911263ef912bb72f5087c02213122c2cfe2e94fe08d168f82912f/diff:/var/lib/docker/overlay2/04f3c8191a9b2ddf5e239a7b1ff301a6787fb544d08af7061fc664d71f7da40c/diff:/var/lib/docker/overlay2/34ea9e0354ddf4fe692ed5e56e80f2972cf5459ac400be249ff771522b1d93e8/diff:/var/lib/docker/overlay2/6e053f3531a48330b0e4dc29fe397ab377d53191c70608e8300854d26122dc18/diff:/var/lib/docker/overlay2/ed108e75c0d0146ecee123cc5f6eed03eac47ce63e41f89129b5348a8ed7e68f/diff:/var/lib/docker/overlay2/25c388af98055c22314ac2c4e0f4ba5eaf860a90c9eec3c32bf40e78a2132b9b/diff",
            "MergedDir": "/var/lib/docker/overlay2/608cafb1c352b957dbbdf27321bf7d6486bd1f1a3b09bd18f391f01553002488/merged",
            "UpperDir": "/var/lib/docker/overlay2/608cafb1c352b957dbbdf27321bf7d6486bd1f1a3b09bd18f391f01553002488/diff",
            "WorkDir": "/var/lib/docker/overlay2/608cafb1c352b957dbbdf27321bf7d6486bd1f1a3b09bd18f391f01553002488/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:dd97e58b4e812b247f3cd261fa7eac247b7c5896b8e34d9474762678cae7774d",
            "sha256:e26286284f6ea22d800d847e7f0ccee9e39591de19270b17eec80289a6270c32",
            "sha256:d7451490396181beac54ea74fc9bb0f2709e46f29f6a853c8c5512e94a5f51ff",
            "sha256:05ed7b2bcaa5ff09e57a7906942a046cbbcb668ac35dcc6151bf0b53f4b4ed03",
            "sha256:54627c2f2cee9f1b255faa98bab55f63a2bc6ddd8d9a6d18f449a78c2dda9e99",
            "sha256:8395322abaa067a2a56692cbcfb2bf7b70ea4a8c4d4a128f0ca6c6eb0720f4f3",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:a121c05cc1181c02cedf544a45325e6049133739c698b071841518f0d8eed3f1",
            "sha256:678ba702a79ea1b4ea46b14e7c5ec7ea7244c5da77b03f97d0c66d4ebd708c47",
            "sha256:b75172410aa9a856c5d252f650d579054416c8ed2249853ecc9875ed96ac72ae",
            "sha256:f993d79bf215df535b70477af1899df11a276499264e6d969aeda0241482bf7f",
            "sha256:606c4b116095b49a9923637a5b93c6525b5cc4e7e7e42383f94d328fd58478da",
            "sha256:122381038f85eed7b42e9859fa60ae9965466d37365d2d1f9c7d0e76a69751d4",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-08-14T13:56:23.660100681+08:00"
    }
}

更多版本

docker.io/langgenius/dify-api:0.6.10

linux/amd64 docker.io2.59GB2024-06-12 13:15
448

docker.io/langgenius/dify-api:0.6.9

linux/amd64 docker.io1.91GB2024-06-12 13:22
722

docker.io/langgenius/dify-api:0.6.11

linux/amd64 docker.io2.62GB2024-06-15 14:54
1961

docker.io/langgenius/dify-api:0.6.12

linux/amd64 docker.io2.48GB2024-07-01 10:47
659

docker.io/langgenius/dify-api:0.6.12-fix1

linux/amd64 docker.io2.48GB2024-07-01 11:33
738

docker.io/langgenius/dify-api:0.6.12-fix1

linux/arm64 docker.io2.41GB2024-07-08 15:02
351

docker.io/langgenius/dify-api:0.6.13

linux/amd64 docker.io2.26GB2024-07-10 11:51
547

docker.io/langgenius/dify-api:0.6.14

linux/amd64 docker.io2.30GB2024-07-16 14:32
623

docker.io/langgenius/dify-api:0.6.15

linux/amd64 docker.io2.30GB2024-07-26 14:05
544

docker.io/langgenius/dify-api:0.6.16

linux/amd64 docker.io2.28GB2024-08-06 13:33
615

docker.io/langgenius/dify-api:0.7.0

linux/amd64 docker.io2.34GB2024-08-15 09:19
445

docker.io/langgenius/dify-api:main

linux/amd64 docker.io2.34GB2024-08-19 11:18
938

docker.io/langgenius/dify-api:0.7.1

linux/amd64 docker.io2.34GB2024-08-20 10:33
598

docker.io/langgenius/dify-api:0.7.2

linux/amd64 docker.io2.40GB2024-08-27 11:36
435

docker.io/langgenius/dify-api:0.7.3

linux/amd64 docker.io2.49GB2024-09-03 16:36
472

docker.io/langgenius/dify-api:0.8.0

linux/amd64 docker.io2.66GB2024-09-10 16:52
433

docker.io/langgenius/dify-api:0.8.1

linux/amd64 docker.io2.68GB2024-09-13 09:44
284

docker.io/langgenius/dify-api:0.8.2

linux/amd64 docker.io2.68GB2024-09-13 17:03
616

docker.io/langgenius/dify-api:0.8.3

linux/amd64 docker.io2.68GB2024-09-23 09:37
703

docker.io/langgenius/dify-api:0.9.1

linux/amd64 docker.io2.68GB2024-10-03 20:27
361

docker.io/langgenius/dify-api:release-0.9.1-fix1

linux/amd64 docker.io2.68GB2024-10-10 15:00
744

docker.io/langgenius/dify-api:0.9.2

linux/amd64 docker.io2.70GB2024-10-15 10:46
642

docker.io/langgenius/dify-api:0.10.0

linux/amd64 docker.io2.70GB2024-10-22 14:50
316

docker.io/langgenius/dify-api:0.10.1

linux/amd64 docker.io2.70GB2024-10-24 11:09
851

docker.io/langgenius/dify-api:0.10.2

linux/amd64 docker.io2.80GB2024-10-31 10:49
474

docker.io/langgenius/dify-api:0.11.0

linux/amd64 docker.io2.92GB2024-11-06 09:35
276

docker.io/langgenius/dify-api:0.11.1

linux/amd64 docker.io2.93GB2024-11-12 10:08
248

docker.io/langgenius/dify-api:0.6.8

linux/amd64 docker.io1.82GB2024-11-13 15:34
213

docker.io/langgenius/dify-api:0.10.0

linux/arm64 docker.io2.81GB2024-11-13 17:37
184

docker.io/langgenius/dify-api:0.11.2

linux/amd64 docker.io2.93GB2024-11-22 10:50
233

docker.io/langgenius/dify-api:0.12.1

linux/amd64 docker.io2.95GB2024-11-29 14:04
336

docker.io/langgenius/dify-api:0.13.0

linux/amd64 docker.io2.95GB2024-12-04 15:23
188

docker.io/langgenius/dify-api:0.6.3

linux/amd64 docker.io1.79GB2024-12-06 10:41
191

docker.io/langgenius/dify-api:0.13.1

linux/amd64 docker.io2.95GB2024-12-07 15:45
213

docker.io/langgenius/dify-api:0.13.2

linux/amd64 docker.io2.95GB2024-12-10 10:04
285

docker.io/langgenius/dify-api:0.14.0

linux/amd64 docker.io3.00GB2024-12-16 18:20
246

docker.io/langgenius/dify-api:0.14.1

linux/amd64 docker.io3.00GB2024-12-19 11:46
296

docker.io/langgenius/dify-api:0.14.2

linux/amd64 docker.io3.00GB2024-12-24 20:03
503

docker.io/langgenius/dify-api:0.14.2

linux/arm64 docker.io2.95GB2025-01-03 16:59
244

docker.io/langgenius/dify-api:0.15.0

linux/amd64 docker.io2.99GB2025-01-08 10:52
908

docker.io/langgenius/dify-api:1.0.0-beta.1

linux/amd64 docker.io2.16GB2025-01-10 09:38
924

docker.io/langgenius/dify-api:0.15.1

linux/amd64 docker.io3.01GB2025-01-14 10:44
584

docker.io/langgenius/dify-api:0.15.2

linux/amd64 docker.io3.01GB2025-01-22 18:02
644

docker.io/langgenius/dify-api:0.15.3

linux/amd64 docker.io2.97GB2025-02-07 20:29
1592

docker.io/langgenius/dify-api:0.15.3

linux/arm64 docker.io2.93GB2025-02-09 15:17
925
341

docker.io/langgenius/dify-api:1.0.0

linux/arm64 docker.io2.12GB2025-03-01 14:22
579
299

docker.io/langgenius/dify-api:latest

linux/amd64 docker.io2.14GB2025-03-04 14:55
918

docker.io/langgenius/dify-api:0.15.2

linux/arm64 docker.io2.98GB2025-03-05 23:24
172

docker.io/langgenius/dify-api:1.0.1

linux/amd64 docker.io2.14GB2025-03-11 23:13
525

docker.io/langgenius/dify-api:1.0.1

linux/arm64 docker.io2.11GB2025-03-13 14:29
250

docker.io/langgenius/dify-api:1.1.0

linux/amd64 docker.io2.05GB2025-03-19 09:22
379

docker.io/langgenius/dify-api:1.1.1

linux/amd64 docker.io2.05GB2025-03-20 23:29
215

docker.io/langgenius/dify-api:1.1.1

linux/arm64 docker.io2.02GB2025-03-21 09:25
261

docker.io/langgenius/dify-api:1.1.2

linux/amd64 docker.io2.05GB2025-03-21 21:07
347

docker.io/langgenius/dify-api:1.1.3

linux/amd64 docker.io2.05GB2025-03-24 21:55
803
238

docker.io/langgenius/dify-api:0.15.5

linux/amd64 docker.io2.97GB2025-03-28 11:18
239

docker.io/langgenius/dify-api:1.2.0

linux/amd64 docker.io2.33GB2025-04-09 20:24
705

docker.io/langgenius/dify-api:1.2.0

linux/arm64 docker.io2.31GB2025-04-09 22:25
319

docker.io/langgenius/dify-api:1.1.3

linux/arm64 docker.io2.02GB2025-04-22 15:26
225

docker.io/langgenius/dify-api:1.3.0

linux/amd64 docker.io2.06GB2025-04-23 17:46
371

docker.io/langgenius/dify-api:1.3.1

linux/amd64 docker.io2.10GB2025-04-28 21:38
567

docker.io/langgenius/dify-api:0.15.7

linux/amd64 docker.io2.97GB2025-05-11 23:37
174

docker.io/langgenius/dify-api:1.4.0

linux/amd64 docker.io2.23GB2025-05-16 17:15
418

docker.io/langgenius/dify-api:1.4.1

linux/amd64 docker.io2.23GB2025-05-27 19:24
401

docker.io/langgenius/dify-api:0.15.4

linux/arm64 docker.io2.93GB2025-06-07 23:27
104

docker.io/langgenius/dify-api:1.4.2

linux/amd64 docker.io1.98GB2025-06-11 20:40
216

docker.io/langgenius/dify-api:1.0.0

linux/amd64 docker.io2.14GB2025-06-12 12:00
34

docker.io/langgenius/dify-api:1.4.3

linux/amd64 docker.io1.98GB2025-06-17 10:42
229

docker.io/langgenius/dify-api:1.3.1

linux/arm64 docker.io2.06GB2025-06-18 20:19
137

docker.io/langgenius/dify-api:1.4.1

linux/arm64 docker.io2.18GB2025-06-23 15:30
141

docker.io/langgenius/dify-api:1.5.0

linux/amd64 docker.io1.98GB2025-06-26 09:55
181

docker.io/langgenius/dify-api:1.5.1

linux/amd64 docker.io1.98GB2025-07-02 17:18
240
87

docker.io/langgenius/dify-api:1.6.0

linux/amd64 docker.io2.02GB2025-07-11 09:53
367
69

docker.io/langgenius/dify-api:1.6.0

linux/arm64 docker.io1.97GB2025-07-13 15:37
170

docker.io/langgenius/dify-api:1.7.0

linux/amd64 docker.io2.11GB2025-07-24 10:47
150

docker.io/langgenius/dify-api:1.7.0

linux/arm64 docker.io2.06GB2025-07-24 10:51
145

docker.io/langgenius/dify-api:1.4.0

linux/arm64 docker.io2.18GB2025-07-24 12:02
55

docker.io/langgenius/dify-api:1.7.1

linux/amd64 docker.io2.11GB2025-07-29 19:59
303

docker.io/langgenius/dify-api:1.7.2

linux/amd64 docker.io2.24GB2025-08-11 22:41
93

docker.io/langgenius/dify-api:1.7.2

linux/arm64 docker.io2.18GB2025-08-14 13:57
33