dev: add back needed arguments to db:{up, down}

This commit is contained in:
naskya 2024-03-05 18:37:24 +09:00
parent 90a39b9027
commit 6344aa29aa
No known key found for this signature in database
GPG key ID: 712D413B3A9FED5C
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@ import { execa } from "execa";
(async () => {
const __dirname = path.dirname(fileURLToPath(import.meta.url));
execa("podman-compose", {
execa("podman-compose", ["down"], {
cwd: join(__dirname, "/../dev/docker-dbonly"),
stdio: "inherit",
});

View file

@ -5,7 +5,7 @@ import { execa } from "execa";
(async () => {
const __dirname = path.dirname(fileURLToPath(import.meta.url));
execa("podman-compose", {
execa("podman-compose", ["up", "--detach"], {
cwd: join(__dirname, "/../dev/docker-dbonly"),
stdio: "inherit",
});