We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With docker-compose version >=2.17.0 the docker-compose.yml section:
scheduler: <<: *common <<: *depends-on
gives error:
line 62: mapping key "<<" already defined at line 61 line 73: mapping key "<<" already defined at line 72
according to this issue the section should be:
scheduler: <<: [*common, *depends-on]
and also in webserver section:
webserver: <<: [*common, *depends-on]
The text was updated successfully, but these errors were encountered:
alfredosa
No branches or pull requests
With docker-compose version >=2.17.0 the docker-compose.yml section:
gives error:
according to this issue the section should be:
and also in webserver section:
The text was updated successfully, but these errors were encountered: