We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80bfc76 commit f6c24afCopy full SHA for f6c24af
.github/workflows/php.yml
@@ -11,7 +11,7 @@ jobs:
11
uses: actions/checkout@v2
12
13
- name: Docker compose up
14
- run: docker-compose up -d
+ run: docker compose up -d
15
16
- name: Validate composer.json and composer.lock
17
run: composer validate
Makefile
@@ -8,10 +8,10 @@ setup-dev: ## Setup project for development
8
make composer-install
9
10
start: ## Start application silently
- docker-compose up -d
+ docker compose up -d
stop: ## Stop application
- docker-compose down
+ docker compose down
restart: ## Restart the application
make stop
0 commit comments