docker-example-drupal/justfile

28 lines
512 B
Makefile
Raw Normal View History

2023-03-14 20:20:48 +00:00
# Do not edit this file. It is automatically generated by 'build-configs'.
2023-02-21 08:18:55 +00:00
default:
@just --list
composer *args:
just _exec php composer {{ args }}
2023-04-12 21:22:51 +00:00
alias phpunit := test
test *args:
2023-04-12 21:40:14 +00:00
just _run php phpunit {{ args }}
2023-04-12 21:22:51 +00:00
2023-02-21 08:18:55 +00:00
drush *args:
just _exec php drush {{ args }}
2023-03-14 20:20:48 +00:00
install *args:
just _exec php drush site:install -y {{ args }}
2023-02-21 08:18:55 +00:00
_exec +args:
docker compose exec {{ args }}
2023-04-12 21:22:51 +00:00
2023-04-12 21:40:14 +00:00
_run service command *args:
docker compose run --rm --no-deps --entrypoint {{ command }} --tty {{ service }} {{ args }}