Skip to content

Commit 30bb621

Browse files
authored
Update MariaDB to 10.6 (#1956)
Signed-off-by: J0WI <[email protected]>
1 parent cf30668 commit 30bb621

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.examples/docker-compose/insecure/mariadb/apache/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3'
22

33
services:
44
db:
5-
image: mariadb:10.5
5+
image: mariadb:10.6
66
command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW
77
restart: always
88
volumes:

.examples/docker-compose/insecure/mariadb/fpm/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3'
22

33
services:
44
db:
5-
image: mariadb:10.5
5+
image: mariadb:10.6
66
command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW
77
restart: always
88
volumes:

.examples/docker-compose/with-nginx-proxy/mariadb/apache/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3'
22

33
services:
44
db:
5-
image: mariadb:10.5
5+
image: mariadb:10.6
66
command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW
77
restart: always
88
volumes:

.examples/docker-compose/with-nginx-proxy/mariadb/fpm/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3'
22

33
services:
44
db:
5-
image: mariadb:10.5
5+
image: mariadb:10.6
66
command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW
77
restart: always
88
volumes:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Database:
6868
```console
6969
$ docker run -d \
7070
-v db:/var/lib/mysql \
71-
mariadb:10.5
71+
mariadb:10.6
7272
```
7373

7474
If you want to get fine grained access to your individual files, you can mount additional volumes for data, config, your theme and custom apps. The `data`, `config` files are stored in respective subfolders inside `/var/www/html/`. The apps are split into core `apps` (which are shipped with Nextcloud and you don't need to take care of) and a `custom_apps` folder. If you use a custom theme it would go into the `themes` subfolder.
@@ -241,7 +241,7 @@ volumes:
241241

242242
services:
243243
db:
244-
image: mariadb:10.5
244+
image: mariadb:10.6
245245
restart: always
246246
command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW
247247
volumes:
@@ -287,7 +287,7 @@ volumes:
287287

288288
services:
289289
db:
290-
image: mariadb:10.5
290+
image: mariadb:10.6
291291
restart: always
292292
command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW
293293
volumes:

0 commit comments

Comments
 (0)