dev: add back needed arguments to db:{up, down}
This commit is contained in:
parent
90a39b9027
commit
6344aa29aa
2 changed files with 2 additions and 2 deletions
|
@ -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",
|
||||
});
|
||||
|
|
|
@ -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",
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue