一键导入
docker
Conventions for docker
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Conventions for docker
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | docker |
| description | Conventions for docker |
If the latest java version is 25and there is an image being used like:
FROM eclipse-temurin:21-alpine
Then it should be updated to:
FROM eclipse-temurin:25-alpine
This example is only valid for CircleCI configuration files located in .circleci/config.yml.
Replace this:
docker:
- image: eclipse-temurin:21-alpine
with:
docker:
- image: eclipse-temurin:25-alpine
docker-composeThe usage of docker-compose has been deprecated and in some cases it doesn't work anymore.
Please replace docker-compose with docker compose everywhere, namely in bash scripts, Makefile and Makefile.mk files, .md files, all kinds of Markdown files, and other files you may find it.
Leave all binary files untouched.
[] No Dockerfile should use older Java version images [] No Testcontainers code should use older Java version images
Conventions for using Kotlin
Conventions to use in Readme files
Conventions for using Java
Conventions for using in all JEE frameworks. These are common standards for CDI
Conventions for using in all JVM languages
Conventions for using parallelization in all tests using Jupiter