diff --git a/build.sh b/shell/build+recreate.sh
similarity index 93%
rename from build.sh
rename to shell/build+recreate.sh
index c7618cd..0a446eb 100644
--- a/build.sh
+++ b/shell/build+recreate.sh
@@ -1,5 +1,6 @@
 #!/bin/bash
 
+cd .. &&
 
 mvn clean install &&
 
diff --git a/shell/down.sh b/shell/down.sh
new file mode 100755
index 0000000..435cb58
--- /dev/null
+++ b/shell/down.sh
@@ -0,0 +1,5 @@
+#!/bin/bash
+
+cd .. &&
+
+docker compose down
\ No newline at end of file
diff --git a/shell/up.sh b/shell/up.sh
new file mode 100755
index 0000000..4223bd9
--- /dev/null
+++ b/shell/up.sh
@@ -0,0 +1,5 @@
+#!/bin/bash
+
+cd .. &&
+
+docker compose up &
\ No newline at end of file