Skip to content

Commit c4969c9

Browse files
committed
chore(docs): Update UPGRADE.md 📖
1 parent 2552236 commit c4969c9

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

UPGRADE.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Upgrade
22

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+
322
## `0.0.x` to `0.1.x`
423

524
Few changes regarding how environment variables are handled:

0 commit comments

Comments
 (0)