build: update configuration files
This commit is contained in:
parent
c83966f711
commit
2721e2693a
1 changed files with 6 additions and 1 deletions
7
justfile
7
justfile
|
@ -24,4 +24,9 @@ _exec +args:
|
||||||
docker compose exec {{ args }}
|
docker compose exec {{ args }}
|
||||||
|
|
||||||
_run service command *args:
|
_run service command *args:
|
||||||
docker compose run --rm --no-deps --entrypoint {{ command }} --tty {{ service }} {{ args }}
|
docker compose run \
|
||||||
|
--entrypoint {{ command }} \
|
||||||
|
--no-deps \
|
||||||
|
--rm \
|
||||||
|
--tty \
|
||||||
|
{{ service }} {{ args }}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue