build: update configuration files

This commit is contained in:
Oliver Davies 2023-04-12 22:40:14 +01:00
parent 39033efd30
commit 9efd8d706f
2 changed files with 7 additions and 3 deletions

View file

@ -73,3 +73,5 @@ volumes:
networks:
web:
name: traefik_proxy
# vim: ft=yaml

View file

@ -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