Replies: 1 comment 2 replies
-
Which problem do you predict? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As far as I have been able to see the "new" version of docker compose changes the way containers are named by default.
Until now, the name was something like:
<project_name>_<service>_<counter>
.With the new version:
<project_name>-<service>-<counter>
This is going to cause problems in some CI/CD. Since it will now affect all of us, it is still a good idea to use "container_name" to give them a predictable name.
What do you think? I don't know if you can configure docker to set the default container name to keep
<project_name>_<service>_<counter>
.Beta Was this translation helpful? Give feedback.
All reactions