docker.io/langgenius/dify-api:1.11.1 linux/amd64

docker.io/langgenius/dify-api:1.11.1 - 国内下载镜像源 浏览次数:38 安全受验证的发布者-Dify
dify-api - 一个用于 API 的容器镜像,可能提供了 dify 的 API 服务和功能。
源镜像 docker.io/langgenius/dify-api:1.11.1
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-api:1.11.1
镜像ID sha256:6045a60992f759de2f7338e950a19e23c1e7707670b4f0002ee04b32474dbbaa
镜像TAG 1.11.1
大小 2.44GB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD
启动入口 /bin/bash /entrypoint.sh
工作目录 /app/api
OS/平台 linux/amd64
浏览量 38 次
贡献者
镜像创建 2025-12-12T06:44:28.960306682Z
同步时间 2025-12-12 16:25
更新时间 2025-12-13 22:20
开放端口
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.12 PYTHON_SHA256=fb85a13414b028c49ba18bbd523c2d055a30b56b18b92ce454ea2c51edc656c4 UV_VERSION=0.8.9 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=2058186f22b4e4d4e155f380c130f4e8f21622fa NLTK_DATA=/usr/local/share/nltk_data
镜像标签
2025-12-12T06:43:24.358Z: org.opencontainers.image.created Production-ready platform for agentic workflow development.: org.opencontainers.image.description NOASSERTION: org.opencontainers.image.licenses 2058186f22b4e4d4e155f380c130f4e8f21622fa: 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.11.1: org.opencontainers.image.version

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

sed -i 's#langgenius/dify-api:1.11.1#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-api:1.11.1#' 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.11.1 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-api:1.11.1  docker.io/langgenius/dify-api:1.11.1'

Ansible快速分发-Containerd

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

镜像构建历史


# 2025-12-12 14:44:28  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/bin/bash" "/entrypoint.sh"]
                        
# 2025-12-12 14:44:28  0.00B 指定运行容器时使用的用户
USER dify
                        
# 2025-12-12 14:44:28  0.00B 设置环境变量 NLTK_DATA
ENV NLTK_DATA=/usr/local/share/nltk_data
                        
# 2025-12-12 14:44:28  0.00B 设置环境变量 COMMIT_SHA
ENV COMMIT_SHA=2058186f22b4e4d4e155f380c130f4e8f21622fa
                        
# 2025-12-12 14:44:28  0.00B 定义构建参数
ARG COMMIT_SHA=2058186f22b4e4d4e155f380c130f4e8f21622fa
                        
# 2025-12-12 14:44:28  3.46KB 复制新文件或目录到容器中
COPY --chown=dify:dify --chmod=755 docker/entrypoint.sh /entrypoint.sh # buildkit
                        
# 2025-12-12 14:44:28  18.16MB 复制新文件或目录到容器中
COPY --chown=dify:dify . /app/api/ # buildkit
                        
# 2025-12-12 14:44:28  3.28MB 执行命令并创建新的镜像层
RUN |1 dify_uid=1001 /bin/sh -c python -c "import tiktoken; tiktoken.encoding_for_model('gpt2')"     && chown -R dify:dify ${TIKTOKEN_CACHE_DIR} # buildkit
                        
# 2025-12-12 14:44:27  0.00B 设置环境变量 TIKTOKEN_CACHE_DIR
ENV TIKTOKEN_CACHE_DIR=/app/api/.tiktoken_cache
                        
# 2025-12-12 14:44:27  67.79MB 执行命令并创建新的镜像层
RUN |1 dify_uid=1001 /bin/sh -c mkdir -p /usr/local/share/nltk_data && NLTK_DATA=/usr/local/share/nltk_data python -c "import nltk; nltk.download('punkt'); nltk.download('averaged_perceptron_tagger'); nltk.download('stopwords')"     && chmod -R 755 /usr/local/share/nltk_data # buildkit
                        
# 2025-12-12 14:44:24  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-12-12 14:44:24  1.92GB 复制新文件或目录到容器中
COPY --chown=dify:dify /app/api/.venv /app/api/.venv # buildkit
                        
# 2025-12-12 11:51:29  0.00B 设置环境变量 VIRTUAL_ENV
ENV VIRTUAL_ENV=/app/api/.venv
                        
# 2025-12-12 11:51:29  248.37MB 执行命令并创建新的镜像层
RUN |1 dify_uid=1001 /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=2.5.13+dfsg-5 perl libsqlite3-0=3.40.1-2+deb12u2 zlib1g=1:1.2.13.dfsg-1         fonts-noto-cjk         media-types         libmagic1     && apt-get autoremove -y     && rm -rf /var/lib/apt/lists/* # buildkit
                        
# 2025-12-12 11:51:20  4.30KB 执行命令并创建新的镜像层
RUN |1 dify_uid=1001 /bin/sh -c groupadd -r -g ${dify_uid} dify &&     useradd -r -u ${dify_uid} -g ${dify_uid} -s /bin/bash dify &&     chown -R dify:dify /app # buildkit
                        
# 2025-12-12 11:51:20  0.00B 定义构建参数
ARG dify_uid=1001
                        
# 2025-12-12 11:51:20  0.00B 设置工作目录为/app/api
WORKDIR /app/api
                        
# 2025-12-12 11:51:19  0.00B 设置环境变量 PYTHONIOENCODING
ENV PYTHONIOENCODING=utf-8
                        
# 2025-12-12 11:51:19  0.00B 设置环境变量 LC_ALL
ENV LC_ALL=en_US.UTF-8
                        
# 2025-12-12 11:51:19  0.00B 设置环境变量 LANG
ENV LANG=en_US.UTF-8
                        
# 2025-12-12 11:51:19  0.00B 设置环境变量 TZ
ENV TZ=UTC
                        
# 2025-12-12 11:51:19  0.00B 声明容器运行时监听的端口
EXPOSE [5001/tcp]
                        
# 2025-12-12 11:51:19  0.00B 设置环境变量 APP_WEB_URL
ENV APP_WEB_URL=http://127.0.0.1:3000
                        
# 2025-12-12 11:51:19  0.00B 设置环境变量 SERVICE_API_URL
ENV SERVICE_API_URL=http://127.0.0.1:5001
                        
# 2025-12-12 11:51:19  0.00B 设置环境变量 CONSOLE_WEB_URL
ENV CONSOLE_WEB_URL=http://127.0.0.1:3000
                        
# 2025-12-12 11:51:19  0.00B 设置环境变量 CONSOLE_API_URL
ENV CONSOLE_API_URL=http://127.0.0.1:5001
                        
# 2025-12-12 11:51:19  0.00B 设置环境变量 DEPLOY_ENV
ENV DEPLOY_ENV=PRODUCTION
                        
# 2025-12-12 11:51:19  0.00B 设置环境变量 EDITION
ENV EDITION=SELF_HOSTED
                        
# 2025-12-12 11:51:19  0.00B 设置环境变量 FLASK_APP
ENV FLASK_APP=app.py
                        
# 2025-12-12 11:51:19  55.76MB 执行命令并创建新的镜像层
RUN /bin/sh -c pip install --no-cache-dir uv==${UV_VERSION} # buildkit
                        
# 2025-12-12 11:51:19  0.00B 设置环境变量 UV_VERSION
ENV UV_VERSION=0.8.9
                        
# 2025-12-12 11:51:17  0.00B 设置工作目录为/app/api
WORKDIR /app/api
                        
# 2025-12-09 07:43:21  0.00B 设置默认要执行的命令
CMD ["python3"]
                        
# 2025-12-09 07:43:21  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-12-09 07:43:21  40.22MB 执行命令并创建新的镜像层
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' && 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 -rt dpkg-query --search 		| awk 'sub(":$", "", $1) { print $1 }' 		| 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-12-09 07:34:04  0.00B 设置环境变量 PYTHON_SHA256
ENV PYTHON_SHA256=fb85a13414b028c49ba18bbd523c2d055a30b56b18b92ce454ea2c51edc656c4
                        
# 2025-12-09 07:34:04  0.00B 设置环境变量 PYTHON_VERSION
ENV PYTHON_VERSION=3.12.12
                        
# 2025-12-09 07:34:04  0.00B 设置环境变量 GPG_KEY
ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305
                        
# 2025-12-09 07:34:04  9.25MB 执行命令并创建新的镜像层
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-12-09 07:34:04  0.00B 设置环境变量 LANG
ENV LANG=C.UTF-8
                        
# 2025-12-09 07:34:04  0.00B 设置环境变量 PATH
ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
                        
# 2025-12-08 08:00:00  74.81MB 
# debian.sh --arch 'amd64' out/ 'bookworm' '@1765152000'
                        
                    

镜像信息

{
    "Id": "sha256:6045a60992f759de2f7338e950a19e23c1e7707670b4f0002ee04b32474dbbaa",
    "RepoTags": [
        "langgenius/dify-api:1.11.1",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-api:1.11.1"
    ],
    "RepoDigests": [
        "langgenius/dify-api@sha256:157c1b65e94c8a3f61935184f9dd2ff470af3e95854d77beb72c70c30782590f",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-api@sha256:2df1165ccd783993538c3b38db3a7101653b0c364d04ddbc034391e231aba2ad"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-12-12T06:44:28.960306682Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "dify",
        "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.12",
            "PYTHON_SHA256=fb85a13414b028c49ba18bbd523c2d055a30b56b18b92ce454ea2c51edc656c4",
            "UV_VERSION=0.8.9",
            "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=2058186f22b4e4d4e155f380c130f4e8f21622fa",
            "NLTK_DATA=/usr/local/share/nltk_data"
        ],
        "Cmd": null,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "/app/api",
        "Entrypoint": [
            "/bin/bash",
            "/entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": {
            "org.opencontainers.image.created": "2025-12-12T06:43:24.358Z",
            "org.opencontainers.image.description": "Production-ready platform for agentic workflow development.",
            "org.opencontainers.image.licenses": "NOASSERTION",
            "org.opencontainers.image.revision": "2058186f22b4e4d4e155f380c130f4e8f21622fa",
            "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.11.1"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 2437221606,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/4ab208a5083759d8998a711a819aec36b05a4460e875a5525ab80fc3512f20f8/diff:/var/lib/docker/overlay2/8ea2e7b7ab24e7665300a80c05aba57a45f6bb5339dd745bc0d84babab5292e2/diff:/var/lib/docker/overlay2/4c0389fa69a2cea9b93af2a621b0105e504755b9b4dfbca6bd5ccbcb50ccc888/diff:/var/lib/docker/overlay2/55a0cdf99beb26791e08378831b28da5e244e5d9220ede47b020212741498f94/diff:/var/lib/docker/overlay2/82be38871904c98df303f62b6949748ca24c84c23365c35b040a047c31deef57/diff:/var/lib/docker/overlay2/ffaf81bb64529ab0078f8f2a463c985643b9085c070c3be277166fea2fa234c3/diff:/var/lib/docker/overlay2/c02b75c88702b357f96bab9c4cb5af09cbf8f1851297771d028eb2a34a580739/diff:/var/lib/docker/overlay2/561973069de6d590325d0781072a3812ecc398a6a4639fbece8d90ad88a649cb/diff:/var/lib/docker/overlay2/132045eb1b614d2594106f5f9ed97c5dce422203ed55405f93ada49e10b8db6b/diff:/var/lib/docker/overlay2/4b79c642d7f90a3205b61e13c87d146fbf5578c9e9347d1065381373f4878ea0/diff:/var/lib/docker/overlay2/d58c974b546f7924a3d3b9845668990e255c8f61e01415fc85d085a30ba2031c/diff:/var/lib/docker/overlay2/e34a8225acb6292d51a3e7011caa5d6f3c4dde717e347d154490eed6f57d5ab9/diff:/var/lib/docker/overlay2/b5257423d4bd563aa9d4ec506789d91f10eebe76ae05a63b84a193109918c779/diff",
            "MergedDir": "/var/lib/docker/overlay2/f884465019fd70c297d47a9b62587ad443a1b71a66f1e268d08fec16677159e9/merged",
            "UpperDir": "/var/lib/docker/overlay2/f884465019fd70c297d47a9b62587ad443a1b71a66f1e268d08fec16677159e9/diff",
            "WorkDir": "/var/lib/docker/overlay2/f884465019fd70c297d47a9b62587ad443a1b71a66f1e268d08fec16677159e9/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:abe743884ea0f81e9c440e82f83e69d90f4a9c127436d36b77b0aae5eb96ce25",
            "sha256:9bb1d272ab0d3d1df8839cd5bf08c58b807bf38ac61d77dfe50e7da84afc21b3",
            "sha256:70fc8a9dea828d02e41b2d9257e1a0de82f3d853a02961c593b17583685f2d8c",
            "sha256:73c130b00770ddd49459887acfaefd067359353d8c336b40f001abf88e7cc5d8",
            "sha256:449675734c3741e93791b385368e3279b4b131eb88cd8aadda2bdbc9fbc72aa7",
            "sha256:1d300adfba03f36950eed138e43b7900dcc4d0515716d8cc3ee5db9afc6561f8",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:45c23478f2f7cffead2429267f88347947765ac11f523e4a41db20f9e1e937b8",
            "sha256:3f7d0885e6c80d7e2242e62a82118b8cc0888017283f7af1a322b589dd952457",
            "sha256:59663e0ab9958c27e0b7f0205732ec136132897fb1f80d3b3d49eb24a8cce25c",
            "sha256:dafbe811b3ec4b553e798d8814e7ff845c35133606c6628b73057ee5b852dbda",
            "sha256:db940d37ff4dd63e6a92960e9dc847ff12240c50f67703af877004dfeda69175",
            "sha256:537cd827044e35ea315b79fa678b67239d0ec1166361cdb697ce4b8203d9e9dd",
            "sha256:15ef3180ceb7d8654f0597f2f73a18d6e1596cc387f16dbd15a1c4b111f7bb15"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-12-12T16:23:31.290285759+08:00"
    }
}

更多版本

docker.io/langgenius/dify-api:0.6.10

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

docker.io/langgenius/dify-api:0.6.9

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

docker.io/langgenius/dify-api:0.6.11

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

docker.io/langgenius/dify-api:0.6.12

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

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

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

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

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

docker.io/langgenius/dify-api:0.6.13

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

docker.io/langgenius/dify-api:0.6.14

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

docker.io/langgenius/dify-api:0.6.15

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

docker.io/langgenius/dify-api:0.6.16

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

docker.io/langgenius/dify-api:0.7.0

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

docker.io/langgenius/dify-api:main

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

docker.io/langgenius/dify-api:0.7.1

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

docker.io/langgenius/dify-api:0.7.2

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

docker.io/langgenius/dify-api:0.7.3

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

docker.io/langgenius/dify-api:0.8.0

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

docker.io/langgenius/dify-api:0.8.1

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

docker.io/langgenius/dify-api:0.8.2

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

docker.io/langgenius/dify-api:0.8.3

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

docker.io/langgenius/dify-api:0.9.1

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

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

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

docker.io/langgenius/dify-api:0.9.2

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

docker.io/langgenius/dify-api:0.10.0

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

docker.io/langgenius/dify-api:0.10.1

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

docker.io/langgenius/dify-api:0.10.2

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

docker.io/langgenius/dify-api:0.11.0

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

docker.io/langgenius/dify-api:0.11.1

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

docker.io/langgenius/dify-api:0.6.8

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

docker.io/langgenius/dify-api:0.10.0

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

docker.io/langgenius/dify-api:0.11.2

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

docker.io/langgenius/dify-api:0.12.1

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

docker.io/langgenius/dify-api:0.13.0

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

docker.io/langgenius/dify-api:0.6.3

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

docker.io/langgenius/dify-api:0.13.1

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

docker.io/langgenius/dify-api:0.13.2

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

docker.io/langgenius/dify-api:0.14.0

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

docker.io/langgenius/dify-api:0.14.1

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

docker.io/langgenius/dify-api:0.14.2

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

docker.io/langgenius/dify-api:0.14.2

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

docker.io/langgenius/dify-api:0.15.0

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

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

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

docker.io/langgenius/dify-api:0.15.1

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

docker.io/langgenius/dify-api:0.15.2

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

docker.io/langgenius/dify-api:0.15.3

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

docker.io/langgenius/dify-api:0.15.3

linux/arm64 docker.io2.93GB2025-02-09 15:17
1356
513

docker.io/langgenius/dify-api:1.0.0

linux/arm64 docker.io2.12GB2025-03-01 14:22
742
426

docker.io/langgenius/dify-api:latest

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

docker.io/langgenius/dify-api:0.15.2

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

docker.io/langgenius/dify-api:1.0.1

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

docker.io/langgenius/dify-api:1.0.1

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

docker.io/langgenius/dify-api:1.1.0

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

docker.io/langgenius/dify-api:1.1.1

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

docker.io/langgenius/dify-api:1.1.1

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

docker.io/langgenius/dify-api:1.1.2

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

docker.io/langgenius/dify-api:1.1.3

linux/amd64 docker.io2.05GB2025-03-24 21:55
1058
394

docker.io/langgenius/dify-api:0.15.5

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

docker.io/langgenius/dify-api:1.2.0

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

docker.io/langgenius/dify-api:1.2.0

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

docker.io/langgenius/dify-api:1.1.3

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

docker.io/langgenius/dify-api:1.3.0

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

docker.io/langgenius/dify-api:1.3.1

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

docker.io/langgenius/dify-api:0.15.7

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

docker.io/langgenius/dify-api:1.4.0

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

docker.io/langgenius/dify-api:1.4.1

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

docker.io/langgenius/dify-api:0.15.4

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

docker.io/langgenius/dify-api:1.4.2

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

docker.io/langgenius/dify-api:1.0.0

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

docker.io/langgenius/dify-api:1.4.3

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

docker.io/langgenius/dify-api:1.3.1

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

docker.io/langgenius/dify-api:1.4.1

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

docker.io/langgenius/dify-api:1.5.0

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

docker.io/langgenius/dify-api:1.5.1

linux/amd64 docker.io1.98GB2025-07-02 17:18
448
271

docker.io/langgenius/dify-api:1.6.0

linux/amd64 docker.io2.02GB2025-07-11 09:53
622
292

docker.io/langgenius/dify-api:1.6.0

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

docker.io/langgenius/dify-api:1.7.0

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

docker.io/langgenius/dify-api:1.7.0

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

docker.io/langgenius/dify-api:1.4.0

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

docker.io/langgenius/dify-api:1.7.1

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

docker.io/langgenius/dify-api:1.7.2

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

docker.io/langgenius/dify-api:1.7.2

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

docker.io/langgenius/dify-api:1.7.1

linux/arm64 docker.io2.06GB2025-08-19 17:16
157
157

docker.io/langgenius/dify-api:1.8.0

linux/amd64 docker.io2.25GB2025-08-28 09:53
294

docker.io/langgenius/dify-api:1.8.1

linux/amd64 docker.io2.25GB2025-09-04 09:33
409

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

linux/amd64 docker.io2.26GB2025-09-08 17:19
210

docker.io/langgenius/dify-api:2.0.0-beta.2

linux/amd64 docker.io2.26GB2025-09-09 09:32
316

docker.io/langgenius/dify-api:1.9.0

linux/amd64 docker.io2.26GB2025-09-22 22:33
487

docker.io/langgenius/dify-api:1.9.0

linux/arm64 docker.io2.21GB2025-09-25 09:55
273

docker.io/langgenius/dify-api:1.9.1

linux/amd64 docker.io2.26GB2025-10-06 21:52
409

docker.io/langgenius/dify-api:1.8.1

linux/arm64 docker.io2.20GB2025-10-14 14:18
130

docker.io/langgenius/dify-api:1.9.2

linux/amd64 docker.io2.42GB2025-10-23 14:00
403

docker.io/langgenius/dify-api:hotfix-1.9.2-fix.2

linux/amd64 docker.io2.42GB2025-10-27 17:20
192

docker.io/langgenius/dify-api:1.9.1

linux/arm64 docker.io2.21GB2025-11-03 22:43
74

docker.io/langgenius/dify-api:1.10.0-rc1

linux/amd64 docker.io2.42GB2025-11-04 10:04
201

docker.io/langgenius/dify-api:1.9.2

linux/arm64 docker.io2.37GB2025-11-05 18:27
134