Skip to content

Commit 5e94b1a

Browse files
Update references to docker/compose-{cli => ecs} (#1)
Fixes: #15
1 parent 3da16ae commit 5e94b1a

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
bin/
22
dist/
3+
/.idea/
34
/.vscode/

Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ARG GOLANGCI_LINT_VERSION=v1.50.1-alpine
1919
ARG PROTOC_GEN_GO_VERSION=v1.5.2
2020

2121
FROM --platform=${BUILDPLATFORM} golang:${GO_VERSION} AS base
22-
WORKDIR /compose-cli
22+
WORKDIR /compose-ecs
2323
RUN apk add --no-cache -vv \
2424
git \
2525
docker \
@@ -88,7 +88,7 @@ RUN --mount=target=. \
8888
make BINARY=/out/docker -f builder.Makefile cross
8989

9090
FROM scratch AS protos
91-
COPY --from=make-protos --link /compose-cli/cli/server/protos .
91+
COPY --from=make-protos --link /compose-ecs/cli/server/protos .
9292

9393
FROM scratch AS cli
9494
COPY --from=make-cli --link /out/* .
@@ -119,8 +119,8 @@ RUN --mount=type=cache,target=/go/pkg/mod \
119119
go mod tidy
120120

121121
FROM scratch AS go-mod-tidy
122-
COPY --from=make-go-mod-tidy --link /compose-cli/go.mod .
123-
COPY --from=make-go-mod-tidy --link /compose-cli/go.sum .
122+
COPY --from=make-go-mod-tidy --link /compose-ecs/go.mod .
123+
COPY --from=make-go-mod-tidy --link /compose-ecs/go.sum .
124124

125125
FROM base AS check-go-mod
126126
COPY . .

INSTALL.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ with a fresh install of Ubuntu 20.04.
1919
You can install the Compose CLI using the install script:
2020

2121
```console
22-
curl -L https://raw.githubusercontent.com/docker/compose-cli/main/scripts/install/install_linux.sh | sh
22+
curl -L https://raw.githubusercontent.com/docker/compose-ecs/main/scripts/install/install_linux.sh | sh
2323
```
2424

2525
## Manual install
@@ -103,4 +103,4 @@ To test the install script, from a machine with docker:
103103

104104
```console
105105
docker build -t testclilinux -f scripts/Dockerfile-testInstall scripts
106-
```
106+
```

MAINTAINERS

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Docker maintainers file
22
#
3-
# This file describes who runs the docker/compose-cli project and how.
3+
# This file describes who runs the docker/compose-ecs project and how.
44
# This is a living document - if you see something out of date or missing, speak up!
55
#
66
# It is structured to be consumable by both humans and programs.

scripts/install/install_linux.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
set -eu
2020

21-
RELEASE_URL=https://api.github.com/repos/docker/compose-cli/releases/latest
21+
RELEASE_URL=https://api.github.com/repos/docker/compose-ecs/releases/latest
2222
LINK_NAME="${LINK_NAME:-com.docker.cli}"
2323
DRY_RUN="${DRY_RUN:-}"
2424

0 commit comments

Comments
 (0)