Adminer docker image, Adminer (formerly phpMinAdmin) is a full-featured database management tool wri
10K+
Adminer (formerly phpMinAdmin) is a full-featured database management tool written in PHP. Conversely to phpMyAdmin, it consist of a single file ready to deploy to the target server. Adminer is available for MySQL, PostgreSQL, SQLite, MS SQL, Oracle, Firebird, SimpleDB, Elasticsearch and MongoDB.
Pull the image from the docker index. This is the recommended method of installation as it is easier to update image. These builds are performed by the Docker Trusted Build service.
docker pull dockage/adminer:latest
Alternately you can build the image locally.
git clone https://github.com/dockage/adminer.git
cd adminer
docker build --tag="$USER/adminer" .
The quickest way to get started is using docker-compose.
wget https://raw.githubusercontent.com/dockage/adminer/master/docker-compose.yml
docker-compose up
Alternately, you can manually launch the adminer container.
docker run --name='adminer' -d \
--publish=80:80 \
dockage/adminer:latest
To upgrade to newer adminer releases, simply follow this 3 step upgrade procedure.
docker pull dockage/adminer:latest
docker stop adminer
docker rm adminer
docker run --name=adminer -d [OPTIONS] dockage/adminer:latest
Content type
Image
Digest
Size
19.1 MB
Last updated
over 7 years ago
docker pull dockage/adminer