mirror of
https://github.com/louislam/dockge.git
synced 2024-11-22 08:14:04 +01:00
10 lines
248 B
TypeScript
10 lines
248 B
TypeScript
|
// 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);
|
||
|
}
|
||
|
});
|