diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-01-04 15:00:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-04 15:00:02 +0100 |
commit | 9134ef08ec0b92e2c378b6c6f8f450dd6a4d9bb0 (patch) | |
tree | 67c42551b199d4f49fee55aaccf4d62ed1cdd137 | |
parent | 4f5563735f5ea80b6013e6c7cee4f4885786a0d9 (diff) | |
parent | b149c047b7380473640dcc6f6f3ea7514c8de58d (diff) | |
download | nextcloud-server-9134ef08ec0b92e2c378b6c6f8f450dd6a4d9bb0.tar.gz nextcloud-server-9134ef08ec0b92e2c378b6c6f8f450dd6a4d9bb0.zip |
Merge pull request #13336 from estheruary/master
Add note for Docker users running console
-rw-r--r-- | console.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/console.php b/console.php index 1d5021edef0..7cdc2f1fd04 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); } |