Backdocker.io/apache/apisix
docker.io

docker.io/apache/apisix:latest

Apache APISIX: Cloud-Native API Gateway

Size
153.29 MB
Local pulls
6
Upstream pulls
38,239,156
Synced at
2026-08-15 09:38:24

China image

registry.cn-global.starbucket.com.cn/starbucket/docker.io/apache/apisix:latest

Source image

docker.io/apache/apisix:latest

Image info

Image ID
sha256:8611ffd265e7fa7e6565a83d1d3a8f556b4a78c03e59d36dfc484bc452c392ba
Image tag
latest
Image size
153.29 MB
Platform
linux/amd64
Registry
docker.io
CMD
docker-start
Entrypoint
/docker-entrypoint.sh
Working dir
/usr/local/apisix
User
apisix
StopSignal
SIGQUIT
Created
2026-08-06T02:29:05.658Z

Exposed ports 2

  • 9080/tcp
  • 9443/tcp

Environment 1

PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/openresty/luajit/bin:/usr/local/openresty/nginx/sbin:/usr/local/openresty/bin

Labels 1

org.opencontainers.image.version24.04

Pull commands

Docker
docker pull registry.cn-global.starbucket.com.cn/starbucket/docker.io/apache/apisix:latest
docker tag registry.cn-global.starbucket.com.cn/starbucket/docker.io/apache/apisix:latest docker.io/apache/apisix:latest
Containerd
ctr images pull registry.cn-global.starbucket.com.cn/starbucket/docker.io/apache/apisix:latest
ctr images tag registry.cn-global.starbucket.com.cn/starbucket/docker.io/apache/apisix:latest docker.io/apache/apisix:latest
YAML quick replace
sed -i 's#docker.io/apache/apisix:latest#registry.cn-global.starbucket.com.cn/starbucket/docker.io/apache/apisix:latest#' deployment.yaml
Global registry mirror
Docker

Write Docker daemon.json so registry-mirrors points to this site, then restart Docker

sudo mkdir -p /etc/docker
sudo tee /etc/docker/daemon.json <<'EOF'
{
  "registry-mirrors": ["https://registry.cn-global.starbucket.com.cn"]
}
EOF
sudo systemctl daemon-reload
sudo systemctl restart docker
Containerd

Write containerd certs.d hosts.toml so docker.io pulls via this site, then restart containerd

sudo mkdir -p /etc/containerd/certs.d/docker.io
sudo tee /etc/containerd/certs.d/docker.io/hosts.toml <<'EOF'
server = "https://docker.io"

[host."https://registry.cn-global.starbucket.com.cn"]
  capabilities = ["pull", "resolve"]
EOF
sudo mkdir -p /etc/containerd
if [ ! -f /etc/containerd/config.toml ]; then
  sudo containerd config default | sudo tee /etc/containerd/config.toml >/dev/null
fi
sudo sed -i 's#config_path = ""#config_path = "/etc/containerd/certs.d"#' /etc/containerd/config.toml
sudo systemctl restart containerd

Build history 20

2026-08-06 02:20:53empty layer
STOPSIGNAL SIGQUIT
2026-08-06 02:20:53empty layer
CMD ["docker-start"]
2026-08-06 02:20:53empty layer
ENTRYPOINT ["/docker-entrypoint.sh"]
2026-08-06 02:20:53
COPY ./docker-entrypoint.sh /docker-entrypoint.sh # buildkit
2026-08-06 02:20:53empty layer
EXPOSE [9080/tcp 9443/tcp]
2026-08-06 02:20:53
RUN |1 APISIX_VERSION=3.17.0 /bin/sh -c ln -sf /dev/stdout /usr/local/apisix/logs/access.log     && ln -sf /dev/stderr /usr/local/apisix/logs/error.log # buildkit
2026-08-06 02:20:53empty layer
USER apisix
2026-08-06 02:20:53
RUN |1 APISIX_VERSION=3.17.0 /bin/sh -c groupadd --system --gid 636 apisix     && useradd --system --gid apisix --no-create-home --shell /usr/sbin/nologin --uid 636 apisix     && chown -R apisix:0 /usr/local/apisix     && chmod -R g=u /usr/local/apisix # buildkit