Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEstelle Poulin <dev@inspiredby.es>2019-01-03 19:14:34 +0300
committerEstelle Poulin <dev@inspiredby.es>2019-01-03 19:36:56 +0300
commitb149c047b7380473640dcc6f6f3ea7514c8de58d (patch)
treea96ba40f753cc88c09ee39b236bd22117dec3443 /console.php
parent68952306aa3309286b6cd685976c2cdee674268a (diff)
Add note for Docker users running console
Signed-off-by: Estelle Poulin <dev@inspiredby.es>
Diffstat (limited to 'console.php')
-rw-r--r--console.php1
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);
}