I want to add phpmyadmin in lando as a plugin but facing this error
Asked
Active
Viewed 121 times
1 Answers
0
To add Phpmyadmin, you need to re-write .lando.yml
file and append in the file end with the following lines.
But to have Phpmyadmin, you should have PHP
backend or any LAMP setup, so that you can use PHPMyAdmin
services:
myservice:
type: phpmyadmin
For more details on how to configure you can refer to official documentation
For particular phpmyadmin
version
services:
myservice:
type: phpmyadmin:4.8
Another Method : You can use portforwarding to connect with any external Database GUI tools like Dbeaver
By default, the default databases have portforward, check database port for connecting externally with lando info

Paul Bradbury
- 482
- 6
- 8