File tree 1 file changed +19
-0
lines changed 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change 1
1
# Upgrade
2
2
3
+ ## ` 0.1.x ` to ` 0.2.x `
4
+
5
+ Minor changes regarding default MariaDB version and Docker mounts:
6
+
7
+ - The default version of MariaDB is now 11
8
+ - A new Docker mount, ` public/bundles ` , has been added to the development configuration
9
+
10
+ ### How to upgrade
11
+
12
+ Even if not strictly necessary (MariaDB version is controlled in ` .env ` ), you can change the default value when ` MARIADB_VERSION ` is empty:
13
+
14
+ - In your ` Dockerfile ` change ` ARG MARIADB_VERSION=10 ` to ` ARG MARIADB_VERSION=11 `
15
+ - In your ` docker-compose.yml ` change ` db.build.args.MARIADB_VERSION ` to ` ${MARIADB_VERSION:-11} `
16
+
17
+ To add the new Docker mount:
18
+
19
+ - In your ` docker-compose.dev.yml ` add ` public_bundles:/var/www/html/public/bundles ` to ` php.volumes `
20
+ - In your ` docker-compose.dev.yml ` add ` public_bundles: ` to ` volumes `
21
+
3
22
## ` 0.0.x ` to ` 0.1.x `
4
23
5
24
Few changes regarding how environment variables are handled:
You can’t perform that action at this time.
0 commit comments