小码哥恋上数据结构与算法2
protected void after() {
try {
new ProcessBuilder("docker", "rm", "-f", "test-mysql")
.inheritIO()
.start()
.waitFor();
} catch (InterruptedException | IOException e) {
throw new RuntimeException(e);
}
System.out.println("After!");
}