
如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。
只需在 AI 对话中先发送下面这句话即可:
请先完整阅读并严格遵守以下文档中的全部规则与要求:
https://xuanyuan.cloud/agents.md
在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
The provided Docker image allows you to deploy your WordPress website in production with a powerful configuration, an integrated SMTP relay, and support for PHP Redis.
Key features:
Supported tags:
8.3 (Dockerfile), 8.3-redis (Dockerfile)8.2 (Dockerfile), 8.2-redis (Dockerfile)8.1 (Dockerfile), 8.1-redis (Dockerfile)8.0 (Dockerfile), 8.0-redis (Dockerfile)7.4 (Dockerfile), 7.4-redis (Dockerfile)7.2 (Dockerfile)7.0 (Dockerfile)5.6 (Dockerfile)To install, you need to either mount a directory into /var/www/html or customize the destination directory according to your needs. Here's how to proceed:
DockerfileFROM inrage/docker-wordpress:8.3 COPY --chown=inr . .
We are using a Docker Swarm configuration with Traefik as a reverse proxy. Here's an example of a docker-compose.yml file:
yamlversion: "3.8" services: redis: hostname: mywebsite.redis image: redis:7.2.0 healthcheck: test: ["CMD-SHELL", "redis-cli --raw incr ping"] networks: - internal-network command: redis-server --maxmemory 1024mb --maxmemory-policy allkeys-lru --appendonly yes environment: TZ: "Europe/Paris" volumes: - /etc/localtime:/etc/localtime:ro - redis_data:/data web: image: inrage/mycustomimage networks: database: traefik-public: internal-network: environment: WORDPRESS_DB_HOST: db-master.db WORDPRESS_DB_USER: mywebsite WORDPRESS_DB_PASSWORD: "mywebsitepassword" WORDPRESS_DB_NAME: mywebsite WORDPRESS_TABLE_PREFIX: gr_ WORDPRESS_CONFIG_EXTRA: | define( 'DISALLOW_FILE_MODS', true ); define( 'WP_MEMORY_LIMIT', '512M' ); define( 'WP_REDIS_HOST', 'mywebsite.redis'); TZ: "Europe/Paris" volumes: - /host/website/mywebsite/uploads:/var/www/html/wp-content/uploads deploy: replicas: 1 labels: - traefik.enable=true - traefik.docker.network=traefik-public - traefik.constraint-label=traefik-public - traefik.http.routers.mywebsite-http.rule=Host(`www.inrage.fr`, `inrage.fr`) - traefik.http.routers.mywebsite-http.entrypoints=http - traefik.http.routers.mywebsite-http.middlewares=https-redirect - traefik.http.routers.mywebsite-https.rule=Host(`www.inrage.fr`, `inrage.fr`) - traefik.http.routers.mywebsite-https.entrypoints=https - traefik.http.routers.mywebsite-https.tls=true - traefik.http.routers.mywebsite-https.tls.certresolver=le - traefik.http.services.mywebsite.loadbalancer.server.port=80 volumes: redis_data: networks: internal-network: database: external: true traefik-public: external: true
| Variable | Description | Default |
|---|---|---|
WORDPRESS_NO_CREATE_CONFIG | Do not create a config file | false |
WORDPRESS_DB_HOST | Database host | mysql |
WORDPRESS_DB_USER | Database user | example username |
WORDPRESS_DB_PASSWORD | Database password | example password |
WORDPRESS_DB_NAME | Database name | wordpress |
WORDPRESS_TABLE_PREFIX | Database table prefix | wp_ |
WORDPRESS_DEBUG | Enable debug mode | false |
WORDPRESS_CONFIG_EXTRA | Additional configuration | empty |
WORDPRESS_DB_CHARSET | Database charset | utf8 |
WORDPRESS_DB_COLLATE | Database collate | empty |
WORDPRESS_AUTH_KEY | Authentication key | empty |
WORDPRESS_SECURE_AUTH_KEY | Secure authentication key | empty |
WORDPRESS_LOGGED_IN_KEY | Logged in key | empty |
WORDPRESS_NONCE_KEY | Nonce key | empty |
WORDPRESS_AUTH_SALT | Authentication | |
WORDPRESS_SECURE_AUTH_SALT | Secure authentication salt | empty |
WORDPRESS_LOGGED_IN_SALT | Logged in salt | empty |
WORDPRESS_NONCE_SALT | Nonce salt | empty |
For WORDPRESS_NO_CREATE_CONFIG: Do not create a new configuration file (default: false)
By default, the image will use a new configuration file which is generated at runtime and after you can use WordPress environnement.
If you want to use your own configuration file, set this variable to true.
For WORDPRESS_CONFIG_EXTRA, you can use the following variables:
apacheconfWORDPRESS_CONFIG_EXTRA: | define( 'DISALLOW_FILE_MODS', true ); define( 'WP_MEMORY_LIMIT', '511M' ); define( 'WP_REDIS_HOST', 'mysite.redis');
Refer to the https://github.com/inrage/docker-php documentation for more information.
INRAGE_USER_ID: UID of the user to run the application as (default: 1000)INRAGE_GROUP_ID: GID of the user to run the application as (default: 1000)wp: WordPress CLIsr: allow you to replace in the database (wp search-replace $1 $2 --precise --all-tables --skip-columns=guid)您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
来自真实用户的反馈,见证轩辕镜像的优质服务