diff --git a/docker-compose.yaml b/docker-compose.yaml index 9260c27..6da46e7 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -73,3 +73,5 @@ volumes: networks: web: name: traefik_proxy + +# vim: ft=yaml diff --git a/justfile b/justfile index 3e25b87..6eebfcb 100644 --- a/justfile +++ b/justfile @@ -9,7 +9,7 @@ composer *args: alias phpunit := test test *args: - just _run phpunit {{ args }} + just _run php phpunit {{ args }} drush *args: just _exec php drush {{ args }} @@ -23,5 +23,7 @@ install *args: _exec +args: docker compose exec {{ args }} -_run command *args: - docker compose run --rm --no-deps --entrypoint {{ command }} --tty php {{ args }} +_run service command *args: + docker compose run --rm --no-deps --entrypoint {{ command }} --tty {{ service }} {{ args }} + +# vim: ft=just