-
Notifications
You must be signed in to change notification settings - Fork 56
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Would it make sense to add the schema for docker-compose.yml
files?
I think the regex for these files is something like
^([\.a-zA-Z0-9_-]*docker-)?compose(\.[\.a-zA-Z0-9_-]*)?\.(yml|yaml)$
at least following VSCode's filename patterns1
"filenamePatterns": [
"compose.yml",
"compose.yaml",
"compose.*.yml",
"compose.*.yaml",
"*docker*compose*.yml",
"*docker*compose*.yaml"
],
The spec lives in https://github.com/compose-spec/compose-spec/blob/main/schema/compose-spec.json and seems to be well-maintained.
EDIT: Forgot to mention the schema is also in schemastore but just references the one in compose-spec repo.
Happy to work on a PR following the contrib doc if you're open to it.
Thanks for your work on this project!
Footnotes
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request