From 46422df4900be14730447045cc1b1da3ebbf1e28 Mon Sep 17 00:00:00 2001 From: Daniel Nephin Date: Wed, 11 Jan 2017 11:57:24 -0500 Subject: [PATCH] Improve the error message for extends in stack deploy. Signed-off-by: Daniel Nephin --- cli/compose/types/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/compose/types/types.go b/cli/compose/types/types.go index 45923b3460..5244bd1163 100644 --- a/cli/compose/types/types.go +++ b/cli/compose/types/types.go @@ -38,7 +38,7 @@ var DeprecatedProperties = map[string]string{ // ForbiddenProperties that are not supported in this implementation of the // compose file. var ForbiddenProperties = map[string]string{ - "extends": "Support for `extends` is not implemented yet. Use `docker-compose config` to generate a configuration with all `extends` options resolved, and deploy from that.", + "extends": "Support for `extends` is not implemented yet.", "volume_driver": "Instead of setting the volume driver on the service, define a volume using the top-level `volumes` option and specify the driver there.", "volumes_from": "To share a volume between services, define it using the top-level `volumes` option and reference it from each service that shares it using the service-level `volumes` option.", "cpu_quota": "Set resource limits using deploy.resources",