mirror of
https://github.com/Haxxnet/Compose-Examples.git
synced 2026-04-01 06:45:40 +02:00
25 lines
565 B
JSON
25 lines
565 B
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": ["config:recommended"],
|
|
"enabledManagers": ["docker-compose"],
|
|
"onboarding": false,
|
|
"ignorePaths": [
|
|
"**/node_modules/**",
|
|
"**/bower_components/**",
|
|
"**/vendor/**",
|
|
"**/__tests__/**",
|
|
"**/test/**",
|
|
"**/tests/**",
|
|
"**/__fixtures__/**"
|
|
],
|
|
"docker-compose": {
|
|
"fileMatch": [
|
|
"^examples/.+/(?:docker-)?compose\\.ya?ml$"
|
|
]
|
|
},
|
|
"separateMajorMinor": true,
|
|
"separateMinorPatch": true,
|
|
"prConcurrentLimit": 0,
|
|
"prHourlyLimit": 0
|
|
}
|