docker-compose.yml: mariadb:lts

We should really be striving to be compatible with
the latest mariadb LTS (currently 10.11).

Signed-off-by: Tim Orling <tim.orling@konsulko.com>
This commit is contained in:
Tim Orling 2024-01-12 09:31:40 -08:00
parent 412bd6a14f
commit 490205e3a6

View File

@ -1,7 +1,7 @@
version: '3' version: '3'
services: services:
layersdb: layersdb:
image: mariadb:10.4 image: mariadb:lts
command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci --wait_timeout=28800 --max_allowed_packet=128M command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci --wait_timeout=28800 --max_allowed_packet=128M
environment: environment:
- "MYSQL_DATABASE=layersdb" - "MYSQL_DATABASE=layersdb"