2024-02-11 18:23:25 +01:00
|
|
|
import path, { join } from "node:path";
|
|
|
|
import { fileURLToPath } from "node:url";
|
|
|
|
import { execa } from "execa";
|
|
|
|
|
|
|
|
(async () => {
|
|
|
|
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
|
|
|
2024-03-03 10:57:56 +01:00
|
|
|
execa("podman-compose", [
|
|
|
|
"--file",
|
|
|
|
"docker-compose-dbonly.yml",
|
|
|
|
"down",
|
|
|
|
], {
|
2024-02-11 18:23:25 +01:00
|
|
|
cwd: join(__dirname, "/../dev"),
|
|
|
|
stdio: "inherit",
|
|
|
|
});
|
|
|
|
})();
|