Add release process

This commit is contained in:
Louis Lam
2023-11-12 16:27:02 +08:00
parent 959dbba776
commit 4ce696181b
4 changed files with 99 additions and 1 deletions

9
extra/test-docker.ts Normal file
View File

@@ -0,0 +1,9 @@
// Check if docker is running
import { exec } from "child_process";
exec("docker ps", (err, stdout, stderr) => {
if (err) {
console.error("Docker is not running. Please start docker and try again.");
process.exit(1);
}
});