We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ad9148c + c0feb97 commit 04c5149Copy full SHA for 04c5149
1 file changed
clean-start-container.sh
@@ -1,3 +1,8 @@
1
-docker compose pull
2
-docker compose up -d
3
-docker compose logs -f
+#!/bin/bash
+
+# This command stops containers AND removes volumes
4
+# associated with this docker-compose.yaml file.
5
+docker compose down -v
6
7
+# Recreate everything
8
+docker compose up --build -d
0 commit comments