Skip to content
This repository was archived by the owner on Nov 27, 2023. It is now read-only.

Commit 92edf30

Browse files
milashyu
andcommitted
deprecation: text revisions
Co-authored-by: Han Yu <[email protected]> Signed-off-by: Milas Bowman <[email protected]>
1 parent 53da0fe commit 92edf30

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
## :warning: "Cloud Integrations" is DEPRECATED
1+
## :warning: Retirement Date Pending
22

3-
Compose CLI a.k.a "Cloud Integrations" has been deprecated. Critical security fixes only will be considered for this repository. Compose CLI will be considered End of Live on January 1st 2024.
3+
Docker Compose's integration for ECS and ACI will be retired in November 2023. For now, our main priority in this repository are critical security fixes.
44

5-
ECS user should consider using https://github.com/docker/compose-ecs
5+
ECS users can consider using [compose-ecs](https://github.com/docker/compose-ecs).
66

77

88
# Docker Compose "Cloud Integrations"

aci/backend.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ func init() {
6969
}
7070

7171
func service() (backend.Service, error) {
72-
fmt.Fprintln(os.Stderr, "Cloud integration is DEPRECATED. Read more on https://docs.docker.com/cloud/aci-integration/")
72+
fmt.Fprintln(os.Stderr, "Docker Compose's integration for ECS and ACI will be retired in November 2023. Learn more: https://docs.docker.com/go/compose-ecs-eol/")
7373
contextStore := store.Instance()
7474
currentContext := apicontext.Current()
7575
var aciContext store.AciContext

aci/cloud.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ func (cs *aciCloudService) Logout(ctx context.Context) error {
4949
}
5050

5151
func (cs *aciCloudService) CreateContextData(ctx context.Context, params interface{}) (interface{}, string, error) {
52-
fmt.Fprintln(os.Stderr, "Cloud integration is DEPRECATED. Read more on https://docs.docker.com/cloud/aci-integration/")
52+
fmt.Fprintln(os.Stderr, "Docker Compose's integration for ECS and ACI will be retired in November 2023. Learn more: https://docs.docker.com/go/compose-ecs-eol/")
5353
contextHelper := newContextCreateHelper()
5454
createOpts := params.(ContextParams)
5555
return contextHelper.createContextData(ctx, createOpts)

ecs/backend.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ func init() {
6363
}
6464

6565
func service() (backend.Service, error) {
66-
fmt.Fprintln(os.Stderr, "Cloud integration is DEPRECATED. Read more on https://docs.docker.com/cloud/ecs-integration/")
66+
fmt.Fprintln(os.Stderr, "Docker Compose's integration for ECS and ACI will be retired in November 2023. Learn more: https://docs.docker.com/go/compose-ecs-eol/")
6767
contextStore := store.Instance()
6868
currentContext := apicontext.Current()
6969
var ecsContext store.EcsContext
@@ -157,7 +157,7 @@ func (a ecsCloudService) Logout(ctx context.Context) error {
157157
}
158158

159159
func (a ecsCloudService) CreateContextData(ctx context.Context, params interface{}) (interface{}, string, error) {
160-
fmt.Fprintln(os.Stderr, "Cloud integration is DEPRECATED. Read more on https://docs.docker.com/cloud/ecs-integration/")
160+
fmt.Fprintln(os.Stderr, "Docker Compose's integration for ECS and ACI will be retired in November 2023. Learn more: https://docs.docker.com/go/compose-ecs-eol/")
161161
contextHelper := newContextCreateHelper()
162162
createOpts := params.(ContextParams)
163163
return contextHelper.createContextData(ctx, createOpts)

0 commit comments

Comments
 (0)