forked from GNUsocial/gnu-social
[TOOLS] Add utility commands to the Makefile
This commit is contained in:
parent
1b623a85ae
commit
11e52bcb27
23
Makefile
23
Makefile
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user