build: update configuration files
This commit is contained in:
parent
39033efd30
commit
9efd8d706f
2 changed files with 7 additions and 3 deletions
|
@ -73,3 +73,5 @@ volumes:
|
|||
networks:
|
||||
web:
|
||||
name: traefik_proxy
|
||||
|
||||
# vim: ft=yaml
|
||||
|
|
8
justfile
8
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue