build: update configuration files
This commit is contained in:
parent
c83966f711
commit
2721e2693a
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…
Reference in a new issue