镜像概览

完整引用
docker.io/ubuntu/nginx
Registry
docker.io
命名空间
ubuntu
仓库
nginx
已缓存 Tag 数
24
最近同步
07/06/2026, 08:37 AM

简介

Canonical Ubuntu 官方 Nginx 镜像,基于 Ubuntu LTS 打包 nginx,适合需要 glibc/Ubuntu 生态的 Web 反向代理部署。

详细介绍

ubuntu/nginx 由 Canonical 维护,nginx 运行于 Ubuntu base,与 nginx:alpine 相比更贴近 Ubuntu 服务器环境。定位为 Web 反向代理,挂载 site 配置 volume;K8s Deployment + ConfigMap。

快速启动

docker run -d --name ubuntu-nginx \
  -p 8080:80 \
  -v $(pwd)/html:/var/www/html \
  docker.io/ubuntu/nginx:latest

推荐实践

docker run -d --name ubuntu-nginx \
  --restart unless-stopped \
  -p 8080:80 \
  -v /opt/nginx/conf.d:/etc/nginx/conf.d:ro \
  docker.io/ubuntu/nginx:1.24-24.04

核心参数说明

  • -p 8080:80 — HTTP 端口
  • -v .../conf.d:... — 虚拟主机配置
  • --restart unless-stopped — 代理持续在线
  • 固定 tag — nginx 与 Ubuntu pin

Kubernetes

apiVersion: apps/v1
kind: Deployment
metadata:
  name: ubuntu-nginx
spec:
  replicas: 2
  selector:
    matchLabels:
      app: ubuntu-nginx
  template:
    metadata:
      labels:
        app: ubuntu-nginx
    spec:
      containers:
        - name: nginx
          image: docker.io/ubuntu/nginx:1.24-24.04
          ports:
            - containerPort: 80
          volumeMounts:
            - name: conf
              mountPath: /etc/nginx/conf.d
      volumes:
        - name: conf
          configMap:
            name: nginx-conf
---
apiVersion: v1
kind: Service
metadata:
  name: ubuntu-nginx
spec:
  selector:
    app: ubuntu-nginx
  ports:
    - port: 80
      targetPort: 80

Ingress TLS 终止;ConfigMap 热更新需 reload sidecar。

最新 Tag(20 条)

查看全部 24 个 Tag →
Tag架构推送时间大小Digest同步期望操作
docker.io/ubuntu/nginx
:1.28-26.04_edge
linux/ppc64lelinux/amd64linux/arm64/v8linux/s390x
2026/07/05 11:5512.1 MBsha256:f6b82419a14d
docker.io/ubuntu/nginx
:1-26.04_edge
linux/ppc64lelinux/amd64linux/arm64/v8linux/s390x
2026/07/05 11:5512.1 MBsha256:f6b82419a14d
docker.io/ubuntu/nginx
:1.24-24.04_edge
linux/amd64linux/s390xlinux/ppc64lelinux/arm64/v8
2026/05/08 05:5846.1 MBsha256:6e99487c354c
docker.io/ubuntu/nginx
:1.18-22.04_edge
linux/amd64linux/s390xlinux/ppc64lelinux/arm64/v8
2026/05/08 05:5750.6 MBsha256:f50005f46380
docker.io/ubuntu/nginx
:1.18-20.04_beta
linux/arm64/v8linux/amd64linux/ppc64lelinux/s390x
2025/11/24 22:1046.9 MBsha256:d4d06974f149
docker.io/ubuntu/nginx
:1.18-21.04_beta
linux/s390xlinux/arm64/v8linux/amd64linux/ppc64le
2025/11/24 22:1053.0 MBsha256:cfa7884343db
docker.io/ubuntu/nginx
:1.18-21.10_beta
linux/amd64linux/s390xlinux/arm64/v8linux/ppc64le
2025/11/24 22:1051.8 MBsha256:4812c058b937
docker.io/ubuntu/nginx
:1.18-22.04_beta
linux/amd64linux/s390xlinux/ppc64lelinux/arm64/v8
2025/11/24 22:1050.3 MBsha256:9777f0bd4e72
docker.io/ubuntu/nginx
:1.22-22.10_beta
linux/amd64linux/s390xlinux/ppc64lelinux/arm64/v8
2025/11/24 22:1050.1 MBsha256:968a36a477ce
docker.io/ubuntu/nginx
:1.22-23.04_beta
linux/s390xlinux/arm64/v8linux/amd64linux/ppc64le
2025/11/24 22:1055.8 MBsha256:b363ccb95a42
docker.io/ubuntu/nginx
:1.24-23.10_beta
linux/ppc64lelinux/s390xlinux/arm64/v8linux/amd64
2025/11/24 22:1052.3 MBsha256:538d9d177c31
docker.io/ubuntu/nginx
:1.24-24.04_beta
linux/amd64linux/s390xlinux/ppc64lelinux/arm64/v8
2025/11/24 22:1045.9 MBsha256:b4d8151c11a5
docker.io/ubuntu/nginx
:1.26-24.10_beta
linux/amd64linux/arm64/v8linux/ppc64lelinux/s390x
2025/11/24 22:1050.1 MBsha256:cdad3187368c
docker.io/ubuntu/nginx
:latest
linux/s390xlinux/arm64/v8linux/ppc64lelinux/amd64
2025/11/24 22:1032.2 MBsha256:2922b051714c
docker.io/ubuntu/nginx
:edge
linux/amd64linux/s390xlinux/arm64/v8linux/ppc64le
2025/11/24 22:1033.4 MBsha256:1094fdf732f5
docker.io/ubuntu/nginx
:1.26-25.04_beta
linux/amd64linux/s390xlinux/arm64/v8linux/ppc64le
2025/11/24 22:1033.4 MBsha256:1094fdf732f5
docker.io/ubuntu/nginx
:1.26-25.04_edge
linux/arm64/v8linux/ppc64lelinux/amd64linux/s390x
2025/11/24 21:3631.7 MBsha256:e45035e56e5c
docker.io/ubuntu/nginx
:1.26-24.10_edge
linux/amd64linux/arm64/v8linux/ppc64lelinux/s390x
2025/04/16 22:3350.1 MBsha256:cdad3187368c
docker.io/ubuntu/nginx
:1.18-20.04_edge
linux/arm64/v8linux/amd64linux/ppc64lelinux/s390x
2025/04/16 22:3246.9 MBsha256:d4d06974f149
docker.io/ubuntu/nginx
:1.24-23.10_edge
linux/ppc64lelinux/s390xlinux/arm64/v8linux/amd64
2024/06/19 21:4052.3 MBsha256:538d9d177c31