1
0
Fork 0
mirror of synced 2024-06-03 03:14:50 +12:00

Updated MariaDB version

This commit is contained in:
Eldad Fux 2020-08-17 08:54:42 +03:00
parent 6fa4ded3bf
commit ae567cdd94
5 changed files with 6 additions and 5 deletions

View file

@ -23,6 +23,7 @@
- Updated storage calculation to match IEC standards
- Now using Alpine as base Docker image
- Upgraded device detctor to version 3.12.6
- Upgraded MariaDB to version 10.5.5
- New and consistent response format for all API object + new response examples in the docs
- Removed user roles attribute from user object (can be fetched from /v1/teams/memberships) **
- Removed type attribute from session object response (used only internally)

View file

@ -251,7 +251,7 @@ services:
- _APP_REDIS_PORT
mariadb:
image: appwrite/mariadb:1.0.3 # fix issues when upgrading using: mysql_upgrade -u root -p
image: appwrite/mariadb:1.1.0 # fix issues when upgrading using: mysql_upgrade -u root -p
container_name: appwrite-mariadb
restart: unless-stopped
networks:

View file

@ -88,7 +88,7 @@ services:
- _APP_SMTP_PORT=25
mariadb:
image: appwrite/mariadb:1.0.3 # fix issues when upgrading using: mysql_upgrade -u root -p
image: appwrite/mariadb:1.1.0 # fix issues when upgrading using: mysql_upgrade -u root -p
container_name: appwrite-mariadb
restart: unless-stopped
networks:

View file

@ -264,7 +264,7 @@ services:
- _APP_REDIS_PORT
mariadb:
image: appwrite/mariadb:1.0.3 # fix issues when upgrading using: mysql_upgrade -u root -p
image: appwrite/mariadb:1.1.0 # fix issues when upgrading using: mysql_upgrade -u root -p
container_name: appwrite-mariadb
restart: unless-stopped
networks:

View file

@ -276,7 +276,7 @@ services:
- _APP_REDIS_PORT
mariadb:
image: appwrite/mariadb:1.0.3 # fix issues when upgrading using: mysql_upgrade -u root -p
image: appwrite/mariadb:1.1.0 # fix issues when upgrading using: mysql_upgrade -u root -p
container_name: appwrite-mariadb
restart: unless-stopped
networks:
@ -290,7 +290,7 @@ services:
- MYSQL_DATABASE=appwrite
- MYSQL_USER=user
- MYSQL_PASSWORD=password
command: 'mysqld --innodb-flush-method=fsync'
command: 'mysqld --innodb-flush-method=fsync' # add ' --query_cache_size=0' for DB tests
maildev:
image: djfarrelly/maildev