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

Commit 18bb559

Browse files
committed
Get correct docker-cli-compose version when not latest.
1 parent ea9555a commit 18bb559

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN \
1616
fi && \
1717
apk add -U --upgrade --no-cache \
1818
docker-cli \
19-
docker-cli-compose && \
19+
docker-cli-compose==${COMPOSE_VERSION} && \
2020
docker compose version
2121

2222
COPY ./docker-compose-entrypoint.sh /usr/local/bin/docker-compose-entrypoint.sh

Dockerfile.aarch64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN \
1616
fi && \
1717
apk add -U --upgrade --no-cache \
1818
docker-cli \
19-
docker-cli-compose && \
19+
docker-cli-compose==${COMPOSE_VERSION} && \
2020
docker compose version
2121

2222
COPY ./docker-compose-entrypoint.sh /usr/local/bin/docker-compose-entrypoint.sh

Dockerfile.armhf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN \
1616
fi && \
1717
apk add -U --upgrade --no-cache \
1818
docker-cli \
19-
docker-cli-compose && \
19+
docker-cli-compose==${COMPOSE_VERSION} && \
2020
docker compose version
2121

2222
COPY ./docker-compose-entrypoint.sh /usr/local/bin/docker-compose-entrypoint.sh

0 commit comments

Comments
 (0)