如果你用 DeepSeek、元宝AI、Copilot 等 AI 代为编写轩辕镜像的 docker pull、修改 compose 镜像地址,或排查拉取失败等问题,请让 AI 先读规则再动手,只要在 AI 对话里直接发送下面这句话即可:
生成 docker pull、修改 compose 的 image,或排查拉取失败前,请先阅读并严格遵守 https://xuanyuan.cloud/agents.md 中的规则。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
Note: this is the "per-architecture" repository for the riscv64 builds of https://hub.docker.com/_/postfixadmin -- for more information, see https://github.com/docker-library/official-images#architectures-other-than-amd64 and https://github.com/docker-library/faq#an-images-source-changed-in-git-now-what.
Maintained by:
https://github.com/postfixadmin/docker
Where to get help:
the Docker Community Slack, Server Fault, Unix & Linux, or Stack Overflow
Dockerfile linkshttps://github.com/postfixadmin/docker/blob/f7a67465b3b4a6b930cc98be5d04cdad2292609a/apache/Dockerfile
https://github.com/postfixadmin/docker/blob/f7a67465b3b4a6b930cc98be5d04cdad2292609a/fpm/Dockerfile
https://github.com/postfixadmin/docker/blob/f7a67465b3b4a6b930cc98be5d04cdad2292609a/fpm-alpine/Dockerfile
Where to file issues:
https://github.com/postfixadmin/docker/issues?q=
Supported architectures: (https://github.com/docker-library/official-images#architectures-other-than-amd64)
https://hub.docker.com/r/amd64/postfixadmin/, https://hub.docker.com/r/arm32v6/postfixadmin/, https://hub.docker.com/r/arm32v7/postfixadmin/, https://hub.docker.com/r/arm64v8/postfixadmin/, https://hub.docker.com/r/i386/postfixadmin/, https://hub.docker.com/r/ppc64le/postfixadmin/, https://hub.docker.com/r/riscv64/postfixadmin/, https://hub.docker.com/r/s390x/postfixadmin/
Published image artifact details:
https://github.com/docker-library/repo-info/blob/master/repos/postfixadmin (https://github.com/docker-library/repo-info/commits/master/repos/postfixadmin)
(image metadata, transfer size, etc)
Image updates:
https://github.com/docker-library/official-images/issues?q=label%3Alibrary%2Fpostfixadmin
https://github.com/docker-library/official-images/blob/master/library/postfixadmin (https://github.com/docker-library/official-images/commits/master/library/postfixadmin)
Source of this description:
https://github.com/docker-library/docs/tree/master/postfixadmin (https://github.com/docker-library/docs/commits/master/postfixadmin)
Postfix Admin is a web based interface to configure and manage a Postfix based email server for many users. Features include support for virtual domains and aliases, quotas, and vacation/out-of-the-office messages. It requires PHP, Postfix and one of MySQL, PostgreSQL or SQLite.
!https://raw.githubusercontent.com/docker-library/docs/be39946abe91fb116d24d8b797c9adacfd15a851/postfixadmin/logo.png
If you do not have a config.local.php, then we fall back to look for environment variables to generate one.
console$ docker run -e POSTFIXADMIN_DB_TYPE=mysqli \ -e POSTFIXADMIN_DB_HOST=whatever \ -e POSTFIXADMIN_DB_USER=user \ -e POSTFIXADMIN_DB_PASSWORD=topsecret \ -e POSTFIXADMIN_DB_NAME=postfixadmin \ --name some-postfixadmin \ riscv64/postfixadmin
POSTFIXADMIN_DB_TYPE can be one of :
Note: An SQLite database is not recommend but used as a fallback if you do not have a config.local.php and do not specify the above variables. Do not forget to add a volume for the SQLite path.
You can also specify a POSTFIXADMIN_SETUP_PASSWORD environment variable.
If you'd like to be able to access the instance from the host without the container's IP, standard port mappings can be used:
console$ docker run -e POSTFIXADMIN_DB_TYPE=mysqli \ -e POSTFIXADMIN_DB_HOST=whatever \ -e POSTFIXADMIN_DB_USER=user \ -e POSTFIXADMIN_DB_PASSWORD=topsecret \ -e POSTFIXADMIN_DB_NAME=postfixadmin \ --name some-postfixadmin \ -p 8080:80 riscv64/postfixadmin
Then, access it via http://localhost:8080 or http://host-ip:8080 in a browser.
console$ docker run -v /local/path/to/config.local.php:/var/www/html/config.local.php \ --name some-postfixadmin \ -p 8080:80 \ riscv64/postfixadmin
... via https://github.com/docker/compose
Example compose.yaml for postfixadmin:
yamlservices: db: image: mysql:8.0 restart: always environment: MYSQL_RANDOM_ROOT_PASSWORD: 1 MYSQL_DATABASE: postfixadmin MYSQL_USER: postfixadmin MYSQL_PASSWORD: example postfixadmin: depends_on: - db image: postfixadmin ports: - 8000:80 restart: always environment: POSTFIXADMIN_DB_TYPE: mysqli POSTFIXADMIN_DB_HOST: db POSTFIXADMIN_DB_USER: postfixadmin POSTFIXADMIN_DB_NAME: postfixadmin POSTFIXADMIN_DB_PASSWORD: example
Run docker compose up, wait for it to initialize completely, and visit http://localhost:8080 or http://host-ip:8080 (as appropriate).
The riscv64/postfixadmin images come in many flavors, each designed for a specific use case.
riscv64/postfixadmin:<version>This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of.
This starts an Apache webserver with PHP, so you can use postfixadmin out of the box.
This image starts only a PHP FPM container. Use this variant if you already have a seperate webserver.
This image has a very small footprint. It is based on Alpine Linux and starts only a PHP FPM process. Use this variant if you already have a seperate webserver. If you need more tools, that are not available on Alpine Linux, use the fpm image instead.
View https://github.com/postfixadmin/postfixadmin/blob/master/LICENSE.TXT for the software contained in this image.
As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).
Some additional license information which was able to be auto-detected might be found in https://github.com/docker-library/repo-info/tree/master/repos/postfixadmin.
As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。


探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式
通过 Docker 登录认证访问私有仓库
发给 Cursor、ChatGPT、豆包等 AI 的说明文档
无需登录使用专属域名
Kubernetes 集群配置 Containerd
K3s 轻量级 Kubernetes 镜像加速
VS Code Dev Containers 配置
Podman 容器引擎配置
HPC 科学计算容器配置
ghcr、Quay、nvcr 等镜像仓库
Harbor Proxy Repository 对接专属域名
Portainer Registries 加速拉取
Nexus3 Docker Proxy 内网缓存
需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单
docker search 限制
站内搜不到镜像
离线 save/load
插件要用 plugin install
WSL 拉取慢
安全与 digest
新手拉取配置
镜像合规机制
不支持 push
manifest unknown
no matching manifest(架构)
invalid tar header(解压)
TLS 证书失败
DNS 超时
域名连通性排查
410 Gone 排查
402 与流量用尽
401 认证失败
429 限流
D-Bus 凭证提示
413 与超大单层
来自真实用户的反馈,见证轩辕镜像的优质服务