Skip to content

Commit 9a663f7

Browse files
mdelapenyaclaude
andauthored
fix: update compose-replace Makefile target to use compose/v5 (#3590)
The compose module was upgraded to v5 in #3568 but the Makefile's compose-replace target still referenced docker/compose/v2. Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 10481c2 commit 9a663f7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ serve-docs:
4646
#
4747
# - compose-clean: Clean the .build directory, and clean the go.mod and go.sum files in the testcontainers-go compose module.
4848
# - compose-clone: Clone the compose and compose-go repositories into the .build directory.
49-
# - compose-replace: Replace the docker/compose/v2 dependency in the testcontainers-go compose module with the local copy.
49+
# - compose-replace: Replace the docker/compose/v5 dependency in the testcontainers-go compose module with the local copy.
5050
# - compose-spec-replace: Replace the compose-spec/compose-go/v2 dependency in the testcontainers-go compose module with the local copy.
5151
# - compose-tidy: Run "go mod tidy" in the testcontainers-go compose module.
5252
# - compose-test-all-latest: Test the testcontainers-go compose module against the latest versions of the compose and compose-go repositories.
@@ -67,7 +67,7 @@ compose-clone: compose-clean
6767

6868
.PHONY: compose-replace
6969
compose-replace:
70-
cd modules/compose && echo "replace github.com/docker/compose/v2 => ../../.build/compose" >> go.mod
70+
cd modules/compose && echo "replace github.com/docker/compose/v5 => ../../.build/compose" >> go.mod
7171

7272
.PHONY: compose-spec-replace
7373
compose-spec-replace:

0 commit comments

Comments
 (0)