I have installed Drupal8 in Lando https://docs.lando.dev/ I have added phpmyAdmin service in lando file problem is that configured database not showing in phpmyAdmin.
name: mydrupal8
recipe: drupal8
config:
webroot: /drupal
services: # Define your services
appserver: # Create a web server container
type: php:7.2 # Specify what version of php to use
via: apache # This could be nginx, should you choose so
webroot: www # Specify webroot
config: # If you want to add/edit
#server: config/apache/lamp.conf # Use an alternate apache config file
#conf: path/from/app/root/php.ini # Alter php configuration with a custom file
database: # Create a database server container
type: mysql
portforward: 3308
creds: # Specify what creds/db to use
user: drupal8
password: drupal8
database: drupal8
phpmyAdmin:
type: phpmyadmin
user: drupal8
password: drupal8
database: drupal8
hosts:
- mysql57
mysql57:
type: mysql:5.7