(image: string)
| 61 | } |
| 62 | |
| 63 | async function pullImage(image: string): Promise<boolean> { |
| 64 | console.log(chalk.blue(`🔄 Pulling image ${image}...`)) |
| 65 | return await runCommand(['docker', 'pull', image]) |
| 66 | } |
| 67 | |
| 68 | async function stopAndRemoveContainer(name: string): Promise<void> { |
| 69 | try { |
no test coverage detected