diff --git a/app/config/variables.php b/app/config/variables.php index 011164db25..5a5e0e951b 100644 --- a/app/config/variables.php +++ b/app/config/variables.php @@ -165,7 +165,7 @@ return [ ], [ 'name' => '_APP_DB_USER', - 'description' => 'MariaDB server user name. Default value is: \'root\'.', + 'description' => 'MariaDB server user name. Default value is: \'user\'.', 'introduction' => '', 'default' => 'user', 'required' => false, @@ -341,7 +341,7 @@ return [ 'name' => '_APP_FUNCTIONS_MEMORY', 'description' => 'The maximum amount of memory a single cloud function is allowed to use in megabytes. The default value is 128.', 'introduction' => '0.7.0', - 'default' => '128', + 'default' => '256', 'required' => false, 'question' => '', ], diff --git a/app/tasks/install.php b/app/tasks/install.php index 4cb5341f0a..d202787441 100644 --- a/app/tasks/install.php +++ b/app/tasks/install.php @@ -30,6 +30,7 @@ $cli * 5. Run docker-compose up -d - DONE * 6. Run data migration */ + $version = "0.7.0"; $config = Config::getParam('variables'); $path = '/usr/src/code/appwrite'; $defaultHTTPPort = '80'; diff --git a/app/views/install/compose.phtml b/app/views/install/compose.phtml index 9a182cc628..9d5c3d084a 100644 --- a/app/views/install/compose.phtml +++ b/app/views/install/compose.phtml @@ -266,10 +266,9 @@ services: - _APP_SMTP_PASSWORD appwrite-maintenance: + image: appwrite/appwrite: entrypoint: maintenance container_name: appwrite-maintenance - build: - context: . restart: unless-stopped networks: - appwrite @@ -307,8 +306,6 @@ services: - appwrite volumes: - appwrite-mariadb:/var/lib/mysql:rw - ports: - - "3306:3306" environment: - MYSQL_ROOT_PASSWORD=rootsecretpassword - MYSQL_DATABASE=${_APP_DB_SCHEMA}