with one click
docker
Conventions for docker
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Conventions for docker
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
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
| 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