From 37c450cf1d7848def2fa9483f6c7c507038d9829 Mon Sep 17 00:00:00 2001 From: ansipunk Date: Sat, 2 Mar 2024 19:40:30 +0500 Subject: [PATCH] Update docker-compose example to use newer MariaDB image --- docs/contributing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/contributing.md b/docs/contributing.md index 92ab3b3c..fccc8687 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -73,7 +73,7 @@ run all of those with lint script version: '2.1' services: postgres: - image: postgres:10.8 + image: postgres:16 environment: POSTGRES_USER: username POSTGRES_PASSWORD: password @@ -82,7 +82,7 @@ run all of those with lint script - 5432:5432 mysql: - image: mysql:5.7 + image: mariadb:11 environment: MYSQL_USER: username MYSQL_PASSWORD: password