
如果你使用 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 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
A docker container for:
https://github.com/Olivine-Labs/busted unit testing framework and konghq helpers.lua modules
To build manually run
make build_${BASE_IMAGE} VERSION=${DKR_TAG} GEOIP_LICENSE_KEY=${GEOIP_LICENSE_KEY}
Where
To use this image as your base image you should:
ADD/COPY your plugin to /plugin/ folderKONG_TESTS env variable to test location folderExample
FROM inspectorio/kong-plugin-tests:v0.1.0-kong1.4-bionic ADD ./my-awesome-plugin /plugin/ ENV KONG_TESTS=/plugin/tests
With docker run command you can do the same as in base iamge approach but use --volume/-v, --env/-e arguments
Example
docker run -v $(pwd)/my-awesome-plugin:/plugin/ \ -e KONG_TESTS=/plugin/tests \ inspectorio/kong-plugin-tests:bionic
To run kong with your plugin installed you need to:
rockpec to /plugin dir inside container/kong/docker-entrypoint.sh command with run_kong argumentversion: '2.1' volumes: kong_data: networks: default: name: kong-net services: kong-migrations: image: "${KONG_DOCKER_TAG:-kong:2.0.4}" container_name: kong-migrations command: > kong migrations bootstrap && kong migrations up && kong migrations finish depends_on: postgres: condition: service_healthy environment: KONG_PG_HOST: postgres KONG_DATABASE: postgres KONG_PG_DATABASE: ${KONG_PG_DATABASE:-kong} KONG_PG_USER: ${KONG_PG_USER:-kong} KONG_PG_PASSWORD: ${KONG_PG_PASSWORD:-kong} postgres: image: postgres:9.5 hostname: postgres container_name: postgres environment: POSTGRES_DB: ${KONG_PG_DATABASE:-kong} POSTGRES_USER: ${KONG_PG_USER:-kong} POSTGRES_PASSWORD: ${KONG_PG_PASSWORD:-kong} healthcheck: test: ["CMD", "pg_isready", "-U", "kong"] interval: 30s timeout: 30s retries: 3 stdin_open: true tty: true volumes: - kong_data:/var/lib/postgresql/data ports: - 25432:5432 kong: image: inspectorio/kong-plugin-tests:alpine container_name: kong command: [ "/kong/docker-entrypoint.sh", "run_kong"] environment: KONG_DATABASE: postgres KONG_PG_HOST: postgres KONG_PG_DATABASE: kong KONG_PG_USER: kong KONG_PG_PASSWORD: kong KONG_ADMIN_LISTEN: 0.0.0.0:8001 KONG_ADMIN_ACCESS_LOG: /dev/stdout KONG_ADMIN_ERROR_LOG: /dev/stderr KONG_PROXY_ACCESS_LOG: /dev/stdout KONG_PROXY_ERROR_LOG: /dev/stderr KONG_PLUGINS: bundled,my-awsesome-plugin KONG_LOG_LEVEL: debug ports: - 8000:8000/tcp - 8001:8001/tcp - 8443:8443/tcp - 8444:8444/tcp healthcheck: test: ["CMD", "kong", "health"] interval: 10s timeout: 10s retries: 10 depends_on: postgres: condition: service_healthy kong-migrations: condition: service_started volumes: - ./my-awsesome-plugin:/plugin
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
来自真实用户的反馈,见证轩辕镜像的优质服务