mirror of
https://github.com/appwrite/appwrite
synced 2026-05-22 08:28:42 +00:00
Fixed installation path
This commit is contained in:
parent
eef7947df5
commit
59021582fa
1 changed files with 2 additions and 1 deletions
|
|
@ -142,9 +142,10 @@ $cli
|
|||
$stdout = '';
|
||||
$stderr = '';
|
||||
|
||||
Console::execute("docker-compose -f {$path}.'/docker-compose.yml up -d --remove-orphans", null, $stdout, $stderr);
|
||||
Console::execute("docker-compose -f {$path}/docker-compose.yml up -d --remove-orphans", null, $stdout, $stderr);
|
||||
|
||||
if ($stderr !== '') {
|
||||
var_dump($stderr);
|
||||
Console::error("Failed to install Appwrite dockers");
|
||||
} else {
|
||||
Console::success("Appwrite installed successfully");
|
||||
|
|
|
|||
Loading…
Reference in a new issue