cli/compose: add schema 3.14 (no changes from 3.13 yet)

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2025-11-06 16:59:10 +01:00
parent 16d2036cde
commit d0c86d39ef
8 changed files with 688 additions and 7 deletions

View File

@ -1,4 +1,4 @@
version: "3.13"
version: "3.14"
services:
foo:

View File

@ -11,7 +11,7 @@ import (
func fullExampleConfig(workingDir, homeDir string) *types.Config {
return &types.Config{
Version: "3.13",
Version: "3.14",
Services: services(workingDir, homeDir),
Networks: networks(),
Volumes: volumes(),

View File

@ -184,7 +184,7 @@ func strPtr(val string) *string {
}
var sampleConfig = types.Config{
Version: "3.13",
Version: "3.14",
Services: []types.ServiceConfig{
{
Name: "foo",

View File

@ -513,7 +513,7 @@
"working_dir": "/code"
}
},
"version": "3.13",
"version": "3.14",
"volumes": {
"another-volume": {
"name": "user_specified_name",

View File

@ -1,4 +1,4 @@
version: "3.13"
version: "3.14"
services:
foo:
build: