You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
id "com.avast.gradle.docker-compose" version "0.16.9"
docker version: 20.10.18
Docker Compose version v2.10.2
Problem:
It seems like newer versions of docker-compose somewhat restrict the project name (no uppercase characters), see docker/compose#9741. Unfortunately, the project name generated by the gradle-docker-compose-plugin for the following config
is 1bd882aa0fc45e9fb48ec8510af6c6d8_xxxxxx_integrationTest (notice the uppercase "T")
Therefore when I run the integration tests I get the following error message: "1bd882aa0fc45e9fb48ec8510af6c6d8_xxxxxx_integrationTest" is not a valid project name.
Therefore, I would suggest this you to not generate project names with uppercase characters as a fix!
Other than that I tried to set the project name manually, like
Setup:
id "com.avast.gradle.docker-compose" version "0.16.9"
Problem:
It seems like newer versions of docker-compose somewhat restrict the project name (no uppercase characters), see docker/compose#9741. Unfortunately, the project name generated by the
gradle-docker-compose-plugin
for the following configis
1bd882aa0fc45e9fb48ec8510af6c6d8_xxxxxx_integrationTest
(notice the uppercase "T")Therefore when I run the integration tests I get the following error message:
"1bd882aa0fc45e9fb48ec8510af6c6d8_xxxxxx_integrationTest" is not a valid project name.
Therefore, I would suggest this you to not generate project names with uppercase characters as a fix!
Other than that I tried to set the project name manually, like
However this seems to have no effect at all! How can I set the project name correctly? Or why is it not working like that?
The text was updated successfully, but these errors were encountered: