@@ -0,0 +1,9 @@
+import docker
+
+client = docker.from_env()
+try:
+ ubuntu = client.containers.get("ubuntu")
+ ubuntu.remove()
+except:
+ pass