We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd2094d commit a4dfda2Copy full SHA for a4dfda2
1 file changed
Makefile
@@ -185,4 +185,23 @@ adminer_docker_restart:
185
186
# Connect to the Adminer container
187
adminer_shell:
188
- docker-compose exec adminer sh
+ docker-compose exec adminer sh
189
+
190
+# MySQL Commands
191
+#-------------------------------------------------
192
193
+# Start the MySQL service in Docker
194
+mysql_docker_start:
195
+ docker-compose start mysql
196
197
+# Stop the MySQL service in Docker
198
+mysql_docker_stop:
199
+ docker-compose stop mysql
200
201
+# Restart the MySQL service in Docker
202
+mysql_docker_restart:
203
+ docker-compose restart mysql
204
205
+# Connect to the MySQL container
206
+mysql_shell:
207
+ docker-compose exec mysql bash
0 commit comments