docker-compose.yml - bump mariadb version
Noted its not the primary development environment, but 10.9 is out of support so just keep the the LTS tag. MARIADB_AUTO_UPGRADE=1 facilitates in place upgrades. closes #8452
This commit is contained in:
parent
83a97420d9
commit
53b9e3cbf3
1 changed files with 3 additions and 2 deletions
|
|
@ -45,10 +45,11 @@ services:
|
||||||
POSTGRES_PASSWORD: postgres
|
POSTGRES_PASSWORD: postgres
|
||||||
|
|
||||||
mysql:
|
mysql:
|
||||||
image: mariadb:10.9
|
image: mariadb:lts
|
||||||
ports:
|
ports:
|
||||||
- 53306:3306
|
- 53306:3306
|
||||||
volumes:
|
volumes:
|
||||||
- mysql_data:/var/lib/mysql
|
- mysql_data:/var/lib/mysql
|
||||||
environment:
|
environment:
|
||||||
MYSQL_ROOT_PASSWORD: mysql
|
MARIADB_ROOT_PASSWORD: mysql
|
||||||
|
MARIADB_AUTO_UPGRADE: 1
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue