This repository allows you to quickly install Adminer database manager into a Ddev project using just ddev get ddev/ddev-adminer
.
Adminer is a full-featured database management tool written in PHP. This service
currently ships the official adminer container
with no external plugins. It contains all official plugins and themes and allows
to easily chose one by editing the docker-compose.adminer.yaml
file after
installation.
This currently supports:
- MySQL / MariaDB
- PostgreSQL
For DDEV v1.23.5 or above run
ddev add-on get ddev/ddev-adminer
For earlier versions of DDEV run
ddev get ddev/ddev-adminer
Afterwards run ddev restart
Then you can just ddev adminer
or use ddev describe
to get the URL (https://<project>.ddev.site:9101
).
- Adds the adminer container as a service
Contributed by @bserem. Maintained by DDEV team.