From 807e06b2120c81e5331213b7821cf083e3fe1a62 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 12 Apr 2023 22:40:22 +0100 Subject: [PATCH] build: update configuration files --- docker-compose.yaml | 2 ++ justfile | 8 +++++--- 2 files changed, 7 insertions(+), 3 deletions(-) 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