1 changed files with
21 additions and
0 deletions
-
21
0
srv/clean.sh
|
|
@@ -0,0 +1,21 @@
|
|
|
+#!/bin/bash
|
|
|
+
|
|
|
+bash_dir=`pwd`
|
|
|
+
|
|
|
+cd ${bash_dir}/mongodb
|
|
|
+docker compose down
|
|
|
+
|
|
|
+cd ${bash_dir}/mysql80
|
|
|
+docker compose down
|
|
|
+
|
|
|
+cd ${bash_dir}/rabbitmq
|
|
|
+docker compose down
|
|
|
+
|
|
|
+cd ${bash_dir}/redis
|
|
|
+docker compose down
|
|
|
+
|
|
|
+cd ${bash_dir}/zookeeper
|
|
|
+docker compose down
|
|
|
+
|
|
|
+cd ${bash_dir}/nacos
|
|
|
+# docker compose down
|