From afc5f655c2b08c425f96a445de0aa90190d35c2d Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 28 Feb 2026 12:16:27 +0900 Subject: chore(dev): remove temporary containers --- justfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'justfile') 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 -- cgit v1.3.1