Merge pull request #3347 from louislam/1.22.X

1.22.x merge to master
This commit is contained in:
Louis Lam
2023-07-05 11:35:36 +08:00
committed by GitHub
16 changed files with 952 additions and 1561 deletions

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

@@ -0,0 +1,9 @@
// Check if docker is running
const { exec } = require("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);
}
});