This commit is contained in:
Torsten Dittmann
2021-01-29 13:32:20 +01:00
parent 2ed11835a5
commit 4dc7204e8b
3 changed files with 4 additions and 6 deletions
+2 -2
View File
@@ -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' => '',
],
+1
View File
@@ -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';
+1 -4
View File
@@ -266,10 +266,9 @@ services:
- _APP_SMTP_PASSWORD
appwrite-maintenance:
image: appwrite/appwrite:<?php echo $version."\n"; ?>
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}