Skip to content

Commit 91d8325

Browse files
author
YukiTsuchida
committed
Replace 'docker-compose' with 'docker compose' in Makefile and var.mk for consistency
1 parent 0b88a0a commit 91d8325

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

demo/chains/besu/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ generate-blockchain-config:
88

99
.PHONY: network
1010
network: generate-blockchain-config
11-
BESU_VERSION=${BESU_VERSION} docker-compose up -d --build
11+
BESU_VERSION=${BESU_VERSION} docker compose up -d --build
1212
make -C ../../../contracts/erc721 truffle-migrate-demo
1313

1414
.PHONY: network-down
1515
network-down:
16-
docker-compose down -v --remove-orphans
16+
docker compose down -v --remove-orphans
1717

1818
.PHONY: clean
1919
clean:

demo/chains/fabric/scripts/startCC.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ set -x
1212
CHAINCODE_CCID_PLATFORMER=${CHAINCODE_CCID_PLATFORMER} \
1313
CHAINCODE_CCID_ORGA=${CHAINCODE_CCID_ORGA} \
1414
CHAINCODE_CCID_ORGB=${CHAINCODE_CCID_ORGB} \
15-
docker-compose -f docker-compose-chaincode.yaml up -d \
15+
docker compose -f docker-compose-chaincode.yaml up -d \

demo/var.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
DOCKER ?= docker
22
DOCKER_BUILD ?= $(DOCKER) build --rm --no-cache --pull
3-
DOCKER_COMPOSE ?= docker-compose
3+
DOCKER_COMPOSE ?= docker compose
44

55
FABRIC_VERSION ?=2.2.0
66
FABRIC_CA_VERSION ?=1.4.7

0 commit comments

Comments
 (0)