Skip to content
This repository has been archived by the owner on Jul 10, 2024. It is now read-only.

Commit

Permalink
fix: makefile app name
Browse files Browse the repository at this point in the history
  • Loading branch information
Vadims Filipovskis committed Mar 13, 2023
1 parent 6e81b41 commit 0736905
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ up:
.PHONY: install
install:
@docker-compose up -d
@docker exec app sh -c "composer install"
@docker exec ticket-app sh -c "composer install"

.PHONY: migration
migration:
docker exec app sh -c "php bin/console make migration"
docker exec ticket-app sh -c "php bin/console make:migration"

.PHONY: migrate
migrate:
@docker exec app sh -c "php bin/console d:m:m"
@docker exec ticket-app sh -c "php bin/console d:m:m"

.PHONY: ssh
ssh:
@docker exec -it app sh
@docker exec -it ticket-app sh

.PHONY: test
test:
Expand Down

0 comments on commit 0736905

Please sign in to comment.