|
@@ -346,6 +346,28 @@ You may also monitor Redis by running: `bin/redis redis-cli monitor`
|
|
|
|
|
|
For more information about Redis usage with Magento, <a href="https://devdocs.magento.com/guides/v2.4/config-guide/redis/redis-session.html" target="_blank">see the DevDocs</a>.
|
|
For more information about Redis usage with Magento, <a href="https://devdocs.magento.com/guides/v2.4/config-guide/redis/redis-session.html" target="_blank">see the DevDocs</a>.
|
|
|
|
|
|
|
|
+**Run phpmyadmin**
|
|
|
|
+
|
|
|
|
+Add below service to the `docker-composer.yml` below service db.
|
|
|
|
+
|
|
|
|
+``` phpmyadmin:
|
|
|
|
+ restart: always
|
|
|
|
+ image: phpmyadmin/phpmyadmin
|
|
|
|
+ environment:
|
|
|
|
+ - MYSQL_ROOT_PASSWORD=magento
|
|
|
|
+ - PMA_USER=root
|
|
|
|
+ - PMA_PASSWORD=magento
|
|
|
|
+ ports:
|
|
|
|
+ - "8080:80"
|
|
|
|
+ links:
|
|
|
|
+ - db:db
|
|
|
|
+ depends_on:
|
|
|
|
+ - db
|
|
|
|
+```
|
|
|
|
+
|
|
|
|
+ After adding restart docker using `bin/restart` and open `localhost:8080` to run phpmyadmin in the browser.
|
|
|
|
+
|
|
|
|
+
|
|
### Xdebug & VS Code
|
|
### Xdebug & VS Code
|
|
|
|
|
|
Install and enable the PHP Debug extension from the [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=felixfbecker.php-debug).
|
|
Install and enable the PHP Debug extension from the [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=felixfbecker.php-debug).
|