安吉 Docker 镜像#

要在 Docker 容器中运行 Angie,请使用我们注册表中的镜像:docker.angie.software。这些镜像是基于我们的 二进制包 和几个操作系统的官方基础镜像构建的。

最小镜像#

  • angie:minimal: 基于 Alpine 3.20 的 1.7.0 版本。

  • angie:<VERSION>-minimal: 基于 Alpine 3.20 的指定版本。

这些镜像仅包含 angie 包。

带额外模块的镜像#

  • angie:latest: 基于 Alpine 3.20 的 1.7.0 版本。

  • angie:<VERSION>angie:<VERSION>-alpine: 基于 Alpine 3.20 的指定版本。

  • angie:<VERSION>-centos: 基于 CentOS Stream 9 的指定版本。

  • angie:<VERSION>-debian: 基于 Debian 12 的指定版本。

  • angie:<VERSION>-oracle: 基于 Oracle Linux 9 的指定版本。

  • angie:<VERSION>-rocky: 基于 Rocky Linux 9 的指定版本。

  • angie:<VERSION>-ubuntu: 基于 Ubuntu 24.04 LTS 的指定版本。

这些包括以下 如果它们为构建镜像时的 Angie 版本 发布):

包列表
  • angie-console-light

  • angie-module-auth-jwt

  • angie-module-auth-spnego

  • angie-module-brotli

  • angie-module-cache-purge

  • angie-module-dav-ext

  • angie-module-dynamic-limit-req

  • angie-module-echo

  • angie-module-enhanced-memcached

  • angie-module-eval

  • angie-module-geoip2

  • angie-module-headers-more

  • angie-module-image-filter

  • angie-module-keyval

  • angie-module-lua

  • angie-module-modsecurity

  • angie-module-ndk

  • angie-module-njs

  • angie-module-opentracing

  • angie-module-otel

  • angie-module-perl

  • angie-module-postgres

  • angie-module-redis2

  • angie-module-rtmp

  • angie-module-set-misc

  • angie-module-subs

  • angie-module-testcookie

  • angie-module-upload

  • angie-module-vod

  • angie-module-vts

  • angie-module-xslt

  • angie-module-zip

  • angie-module-zstd

运行#

要启动一个在端口 8080 上运行 Angie 的容器,启用对 /var/www/ 静态文件目录和当前工作目录中的 angie.conf 文件的只读访问:

$ docker run --rm --name angie -v /var/www:/usr/share/angie/html:ro \
    -v $(pwd)/angie.conf:/etc/angie/angie.conf:ro -p 8080:80 -d docker.angie.software/angie:latest

$ curl -I localhost:8080

    HTTP/1.1 200 OK
    Server: Angie/1.7.0
    Date: Thu, 19 Sep 2024 10:42:54 GMT
    Content-Type: text/html
    Content-Length: 543
    Last-Modified: Thu, 19 Sep 2024 09:12:23 GMT
    Connection: keep-alive
    ETag: "64c3ccc7-21f"
    Accept-Ranges: bytes

这样的设置可以用于本地开发和配置。

自定义镜像#

此外,您可以基于支持的发行版构建自己的镜像,添加带有 源代码 的 Angie 层。以下是一些 Dockerfile 示例:

Debian,使用 Angie 包#
FROM debian:12

LABEL org.opencontainers.image.authors="Release Engineering Team <devops@tech.wbsrv.ru>"

ARG DEBIAN_FRONTEND=noninteractive

RUN set -x \
     && apt-get update \
     && apt-get install --no-install-recommends --no-install-suggests -y \
          ca-certificates curl \
     && curl -o /etc/apt/trusted.gpg.d/angie-signing.gpg \
          https://angie.software/keys/angie-signing.gpg \
     && echo "deb https://download.angie.software/angie/$(. /etc/os-release && echo "$ID/$VERSION_ID $VERSION_CODENAME") main" \
          > /etc/apt/sources.list.d/angie.list \
     && apt-get update \
     && apt-get install --no-install-recommends --no-install-suggests -y \
          angie angie-module-geoip2 angie-module-njs \
     && rm -Rf /var/lib/apt/lists \
          /etc/apt/sources.list.d/angie.list \
          /etc/apt/trusted.gpg.d/angie-signing.gpg \
     && ln -sf /dev/stdout /var/log/angie/access.log \
     && ln -sf /dev/stderr /var/log/angie/error.log

EXPOSE 80

CMD ["angie", "-g", "daemon off;"]
Alpine,使用 Angie 包#
FROM alpine:3.19

LABEL org.opencontainers.image.authors="Release Engineering Team <devops@tech.wbsrv.ru>"

RUN set -x \
     && apk add --no-cache ca-certificates curl \
     && curl -o /etc/apk/keys/angie-signing.rsa https://angie.software/keys/angie-signing.rsa \
     && echo "https://download.angie.software/angie/alpine/v$(egrep -o \
          '[0-9]+\.[0-9]+' /etc/alpine-release)/main" >> /etc/apk/repositories \
     && apk add --no-cache angie angie-module-geoip2 angie-module-njs \
     && rm /etc/apk/keys/angie-signing.rsa \
     && ln -sf /dev/stdout /var/log/angie/access.log \
     && ln -sf /dev/stderr /var/log/angie/error.log

EXPOSE 80

CMD ["angie", "-g", "daemon off;"]

要在 Dockerfile 的目录中构建一个 myangie 镜像,并以与上面描述相同的方式启动一个容器:

$ docker build -t myangie .
$ docker run --rm --name myangie -v /var/www:/usr/share/angie/html:ro \
    -v $(pwd)/angie.conf:/etc/angie/angie.conf:ro -p 8080:80 -d myangie