aboutsummaryrefslogtreecommitdiffhomepage
path: root/justfile
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-02-28 12:16:27 +0900
committernsfisis <nsfisis@gmail.com>2026-02-28 12:16:27 +0900
commitafc5f655c2b08c425f96a445de0aa90190d35c2d (patch)
tree77bdf43245c3510946e39f8d1aefc8916d51a6dc /justfile
parent035464702d136f80f4ffaec9dc520251c96f3b37 (diff)
downloadphperkaigi-2026-albatross-afc5f655c2b08c425f96a445de0aa90190d35c2d.tar.gz
phperkaigi-2026-albatross-afc5f655c2b08c425f96a445de0aa90190d35c2d.tar.zst
phperkaigi-2026-albatross-afc5f655c2b08c425f96a445de0aa90190d35c2d.zip
chore(dev): remove temporary containers
Diffstat (limited to 'justfile')
-rw-r--r--justfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/justfile b/justfile
index 3aa5762..3e95490 100644
--- a/justfile
+++ b/justfile
@@ -30,16 +30,16 @@ psql-query:
sqldef-dryrun: down
{{ docker_compose }} build db
{{ docker_compose }} up --wait db
- {{ docker_compose }} run --no-TTY tools psqldef --dry-run < ./backend/schema.sql
+ {{ docker_compose }} run --rm --no-TTY tools psqldef --dry-run < ./backend/schema.sql
sqldef: down
{{ docker_compose }} build db
{{ docker_compose }} up --wait db
- {{ docker_compose }} run --no-TTY tools psqldef < ./backend/schema.sql
+ {{ docker_compose }} run --rm --no-TTY tools psqldef < ./backend/schema.sql
asynq:
{{ docker_compose }} up --wait task-db
- {{ docker_compose }} run tools go run github.com/hibiken/asynq/tools/asynq --uri task-db:6379 dash
+ {{ docker_compose }} run --rm tools go run github.com/hibiken/asynq/tools/asynq --uri task-db:6379 dash
init: build initdb