Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- 5432

mariadb:
image: mariadb:11
image: mariadb:12
ports:
- 3306
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-locales.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

services:
mariadb:
image: mariadb:11
image: mariadb:12
ports:
- 3306
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload-locales.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

services:
mariadb:
image: mariadb:11
image: mariadb:12
ports:
- 3306
env:
Expand Down
2 changes: 1 addition & 1 deletion compose.test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ services:
redis:
condition: service_healthy
db:
image: "mariadb:11"
image: "mariadb:12"
environment:
MARIADB_DATABASE: "app"
MARIADB_USER: "user"
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ services:
app:
condition: service_healthy
db:
image: "mariadb:11"
image: "mariadb:12"
environment:
MARIADB_ROOT_PASSWORD: "${DB_PASSWORD}"
MARIADB_ROOT_HOST: "%"
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ services:
app:
condition: service_healthy
db:
image: "mariadb:11"
image: "mariadb:12"
restart: unless-stopped
environment:
MARIADB_DATABASE: "${DB_DATABASE}"
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/administration/05-upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,12 +203,12 @@ All new installations will use this version, existing installations will not be

To upgrade your MariaDB container, you need to edit your `docker-compose.yml` file:

- Change the MariaDB image tag to `11`.
- Change the MariaDB image tag to `12`.
- Add a new environment variable `MARIADB_AUTO_UPGRADE` to trigger the service to upgrade the database:

```yaml
db:
image: "mariadb:11"
image: "mariadb:12"
environment:
MARIADB_AUTO_UPGRADE: 1
```
Expand Down
Loading