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:
|
networks:
|
||||||
web:
|
web:
|
||||||
name: traefik_proxy
|
name: traefik_proxy
|
||||||
|
|
||||||
|
# vim: ft=yaml
|
||||||
|
|
8
justfile
8
justfile
|
@ -9,7 +9,7 @@ composer *args:
|
||||||
alias phpunit := test
|
alias phpunit := test
|
||||||
|
|
||||||
test *args:
|
test *args:
|
||||||
just _run phpunit {{ args }}
|
just _run php phpunit {{ args }}
|
||||||
|
|
||||||
drush *args:
|
drush *args:
|
||||||
just _exec php drush {{ args }}
|
just _exec php drush {{ args }}
|
||||||
|
@ -23,5 +23,7 @@ install *args:
|
||||||
_exec +args:
|
_exec +args:
|
||||||
docker compose exec {{ args }}
|
docker compose exec {{ args }}
|
||||||
|
|
||||||
_run command *args:
|
_run service command *args:
|
||||||
docker compose run --rm --no-deps --entrypoint {{ command }} --tty php {{ 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