From 4631790879192c0fa7f62c5f1879313edde22499 Mon Sep 17 00:00:00 2001 From: Mark Altmann Date: Wed, 18 Dec 2024 22:08:21 +0100 Subject: [PATCH] Update docker-compose.yml The official docker image, displayed here: https://hub.docker.com/_/mysql/ If you use 8.0 as the tag, then the latest version is 8.0.40. However, for Major version 8, the latest is 8.4.3. So it would be best to use :8 as the image tag, instead of :8.0 --- docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index d00b5ac..fcc6fce 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -55,7 +55,7 @@ services: MIX_PUSHER_APP_KEY: "${PUSHER_APP_KEY}" MIX_PUSHER_APP_CLUSTER: "${PUSHER_APP_CLUSTER}" db: - image: mysql:8.0 + image: mysql:8 ports: - "3306:3306" command: --default-authentication-plugin=mysql_native_password @@ -81,4 +81,4 @@ services: MYSQL_PASSWORD: test MYSQL_ROOT_PASSWORD: test volumes: - persistent: \ No newline at end of file + persistent: