From 0edd7ad7fb0f9ff0c12ecbf9600e3d981f3535b9 Mon Sep 17 00:00:00 2001 From: Matthew Setter Date: Tue, 25 Mar 2025 21:58:12 +1000 Subject: [PATCH] Update MySQL Docker base image This change ensures that the MySQL service will run on macOS as well as Linux and Windows by using a MySQL image that supports all three OS architectures. The previous image only supported Linux and Windows. --- compose.yml | 2 +- docker/databases/mysql/Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/compose.yml b/compose.yml index d192f5f4d..d50a8ee89 100644 --- a/compose.yml +++ b/compose.yml @@ -16,7 +16,7 @@ services: context: ./ dockerfile: docker/databases/mysql/Dockerfile args: - - VERSION=${MYSQL_VERSION:-8.0.41} + - VERSION=${MYSQL_VERSION:-oraclelinux9} ports: - "3306:3306" environment: diff --git a/docker/databases/mysql/Dockerfile b/docker/databases/mysql/Dockerfile index 69c3f20e8..e5549e2ea 100644 --- a/docker/databases/mysql/Dockerfile +++ b/docker/databases/mysql/Dockerfile @@ -1,3 +1,3 @@ -ARG VERSION=8.4.5 +ARG VERSION=oraclelinux9 -FROM mysql:${VERSION}-bookworm AS base \ No newline at end of file +FROM mysql:${VERSION} AS base \ No newline at end of file