From b149c047b7380473640dcc6f6f3ea7514c8de58d Mon Sep 17 00:00:00 2001 From: Estelle Poulin Date: Thu, 3 Jan 2019 11:14:34 -0500 Subject: [PATCH] Add note for Docker users running console Signed-off-by: Estelle Poulin --- console.php | 1 + 1 file changed, 1 insertion(+) diff --git a/console.php b/console.php index 1d5021edef..7cdc2f1fd0 100644 --- a/console.php +++ b/console.php @@ -68,6 +68,7 @@ try { echo "Current user: " . $user['name'] . PHP_EOL; echo "Owner of config.php: " . $configUser['name'] . PHP_EOL; echo "Try adding 'sudo -u " . $configUser['name'] . " ' to the beginning of the command (without the single quotes)" . PHP_EOL; + echo "If running with 'docker exec' try adding the option '-u " . $configUser['name'] . "' to the docker command (without the single quotes)" . PHP_EOL; exit(1); }