Merge pull request #859 from winfried-van-loon/813-adminer-pg-login

Locking Adminer to stable version
This commit is contained in:
Mike Erickson 2017-04-27 08:38:57 -07:00 committed by GitHub
commit 68ef6235c1
2 changed files with 5 additions and 1 deletions

View File

@ -718,6 +718,7 @@ docker-compose up -d adminer
2 - Open your browser and visit the localhost on port **8080**: `http://localhost:8080`
**Note:** We've locked Adminer to version 4.3.0 as at the time of writing [it contained a major bug](https://sourceforge.net/p/adminer/bugs-and-features/548/) preventing PostgreSQL users from logging in. If that bug is fixed (or if you're not using PostgreSQL) feel free to set Adminer to the latest version within [the Dockerfile](https://github.com/laradock/laradock/blob/master/adminer/Dockerfile#L1): `FROM adminer:latest`

View File

@ -1,4 +1,7 @@
FROM adminer:latest
FROM adminer:4.3.0
# Version 4.3.1 contains PostgreSQL login errors. See docs.
# See https://sourceforge.net/p/adminer/bugs-and-features/548/
MAINTAINER Patrick Artounian <partounian@gmail.com>