From 4bf0df8ee1b80969b5b7ad98b4106aa6b3cfb431 Mon Sep 17 00:00:00 2001 From: Winfried Date: Sun, 23 Apr 2017 23:57:47 +0200 Subject: [PATCH] Locking Adminer to stable version --- DOCUMENTATION/content/documentation/index.md | 1 + adminer/Dockerfile | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/DOCUMENTATION/content/documentation/index.md b/DOCUMENTATION/content/documentation/index.md index 48df261..9477827 100644 --- a/DOCUMENTATION/content/documentation/index.md +++ b/DOCUMENTATION/content/documentation/index.md @@ -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` diff --git a/adminer/Dockerfile b/adminer/Dockerfile index 058170c..6117454 100644 --- a/adminer/Dockerfile +++ b/adminer/Dockerfile @@ -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