From 17753d1c07f907a553d6e0d427c75bc3530d1585 Mon Sep 17 00:00:00 2001 From: Mauro Chojrin Date: Wed, 26 Jun 2024 16:05:15 +0200 Subject: [PATCH] Update mysql.md Added instructions to start docker services after re-building --- docs/mysql.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/mysql.md b/docs/mysql.md index 99342a680..ee6f599f6 100644 --- a/docs/mysql.md +++ b/docs/mysql.md @@ -72,6 +72,11 @@ Rebuild the docker environment: docker compose down --remove-orphans && docker compose build --pull --no-cache ``` +Start the services: +```shell +docker compose up -d +``` + Test your setup: ```shell docker compose exec php bin/console dbal:run-sql -q "SELECT 1" && echo "OK" || echo "Connection is not working"