File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -9,14 +9,14 @@ BACKOFFICE_APP_NAME := backoffice
9
9
10
10
# Test if the dependencies we need to run this Makefile are installed
11
11
DOCKER := $(shell command -v docker)
12
- DOCKER_COMPOSE := $(shell command -v docker- compose)
12
+ DOCKER_COMPOSE := $(shell command -v docker compose)
13
13
deps :
14
14
ifndef DOCKER
15
15
@echo "Docker is not available. Please install docker"
16
16
@exit 1
17
17
endif
18
18
ifndef DOCKER_COMPOSE
19
- @echo "docker- compose is not available. Please install docker-compose"
19
+ @echo "docker compose is not available. Please install docker-compose"
20
20
@exit 1
21
21
endif
22
22
28
28
29
29
# Clean containers
30
30
clean :
31
- docker- compose down --rmi local --volumes --remove-orphans
31
+ docker compose down --rmi local --volumes --remove-orphans
32
32
33
33
# Start databases containers in background
34
34
start_database :
35
- docker- compose up -d mongo elasticsearch rabbitmq
35
+ docker compose up -d mongo elasticsearch rabbitmq
You can’t perform that action at this time.
0 commit comments