en un clic
docker
Conventions for docker
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Conventions for docker
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
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