DEV Community

Discussion on: Adminer! A useful and very simple alternative to PhpMyAdmin

Collapse
 
abrandao profile image
Anderson Brandão

I didn't say PhpMyAdmin is not simple. I just show a very(dont need to install) simple alternative.

Thanks for comment.

Collapse
 
bgadrian profile image
Adrian B.G. • Edited

Adminer is way simpler indeed, but because it removes many the functionalities and settings, but is more versatile.

Anyway I use and recommend using docker for development environments, for many obvious reasons.

#https://hub.docker.com/r/phpmyadmin/phpmyadmin/
docker run --name myadmin -d -e PMA_HOST=dbhost -p 8080:80 phpmyadmin/phpmyadmin
#https://hub.docker.com/_/adminer/
docker run --link some_database:db -p 8080:8080 adminer
Thread Thread
 
abrandao profile image
Anderson Brandão

Thanks. I am using docker and Adminer.