docker-example-drupal/justfile

20 lines
318 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 }}
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 }}