build(db): update mariadb

This commit is contained in:
Collin M. Barrett 2020-07-05 16:11:39 -05:00
parent 13dc488ff9
commit 30c221a2ec
3 changed files with 3 additions and 3 deletions

View file

@ -16,7 +16,7 @@ services:
mariadb:
# on update, also update ServerVersion in FilterLists.Data.Constants.ServerVersion
image: mariadb:10.4.12
image: mariadb:10.5.4
networks:
- test-data
environment:

View file

@ -38,7 +38,7 @@ services:
mariadb:
# on update, also update ServerVersion in FilterLists.Data.Constants.ServerVersion
image: mariadb:10.4.12
image: mariadb:10.5.4
restart: always
networks:
- api

View file

@ -6,6 +6,6 @@ namespace FilterLists.Data
{
public static class Constants
{
public static readonly ServerVersion ServerVersion = new ServerVersion(new Version(10, 4, 12), ServerType.MariaDb);
public static readonly ServerVersion ServerVersion = new ServerVersion(new Version(10, 5, 4), ServerType.MariaDb);
}
}