[TOOLS] Add utility commands to the Makefile

This commit is contained in:
Hugo Sales 2021-08-06 11:14:03 +00:00
vanhempi 1b623a85ae
commit 11e52bcb27
Allekirjoittanut: someonewithpc
GPG avaimen ID: 7D0C7EAFC9D835A0
1 muutettua tiedostoa jossa 21 lisäystä ja 2 poistoa

Näytä tiedosto

@ -1,6 +1,25 @@
DIR=$(strip $(notdir $(CURDIR))) # Seems a bit hack-ish, but `basename` works differently
test:
.PHONY:
if ! docker info > /dev/null; then echo "Docker does not seem to be running"; exit 1; fi
up: .PHONY
docker-compose up -d
down: .PHONY
docker-compose down
php-repl: .PHONY
docker exec -it $(strip $(DIR))_php_1 sh -c '/var/www/social/bin/console psysh'
php-shell: .PHONY
docker exec -it $(strip $(DIR))_php_1 sh -c 'cd /var/www/social; sh'
psql-shell: .PHONY
docker exec -it $(strip $(DIR))_db_1 sh -c "psql -U postgres social"
test: .PHONY
cd docker/testing && docker-compose run php && docker-compose down
stop-test:
stop-test: .PHONY
cd docker/testing && docker-compose down