Branch: refs/heads/master Home: https://github.com/phpmyadmin/docker Commit: 0512d0c6b314e1cea4cdd90e21b549914df837d5 https://github.com/phpmyadmin/docker/commit/0512d0c6b314e1cea4cdd90e21b54991... Author: Baotong Shi shibaotong@gmail.com Date: 2018-08-30 (Thu, 08 August 2018) +08:00
Changed paths: M run.sh
Log Message: ----------- Update run.sh
when I start the phpMyAdmin Container, I got the below error phpMyAdmin - Error Failed to load phpMyAdmin configuration (./../etc/phpmyadmin/config.inc.php:3): require(): Failed opening required '/etc/phpmyadmin/config.secret.inc.php' (include_path='.:/usr/local/lib/php')
I found the access right of the config.secret.inc.php is not correct, I added the below cmd in run.sh, then build the image, It can work
chmod 644 /etc/phpmyadmin/*
Commit: f01eddea45e9a35011e293dffab13d4c285d48da https://github.com/phpmyadmin/docker/commit/f01eddea45e9a35011e293dffab13d4c... Author: Michal Čihař michal@cihar.com Date: 2018-09-01 (Sat, 09 September 2018) +02:00
Changed paths: M run.sh
Log Message: ----------- Merge pull request #191 from baotongshi/patch-1
modify the /etc/phpmyadmin/* file's access right