From 0a892afe4934ff41eeb42a3110ac637d217dab00 Mon Sep 17 00:00:00 2001 From: Antonio Date: Mon, 24 Mar 2025 14:00:06 +0100 Subject: [PATCH 1/3] configurar collation de la base de datos --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 6bccafa..d4fd457 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ services: mysql: image: mysql:8.0 - command: --default-authentication-plugin=mysql_native_password + command: --default-authentication-plugin=mysql_native_password --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_520_ci restart: always environment: MYSQL_ROOT_PASSWORD: mypassword From 37dc85bf9c210a5eb39629944c82b5ce3371c084 Mon Sep 17 00:00:00 2001 From: Antonio Date: Wed, 26 Mar 2025 12:35:27 +0100 Subject: [PATCH 2/3] Update docker-compose.yml --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index d4fd457..89b826d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ services: mysql: image: mysql:8.0 - command: --default-authentication-plugin=mysql_native_password --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_520_ci + command: --default-authentication-plugin=mysql_native_password --character-set-server=utf8mb4 --collation-server=utf8_bin restart: always environment: MYSQL_ROOT_PASSWORD: mypassword From 81ed2b9e367da9bbae877d155e3d57128dd0d203 Mon Sep 17 00:00:00 2001 From: Antonio Date: Wed, 26 Mar 2025 12:36:07 +0100 Subject: [PATCH 3/3] Update docker-compose.yml --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 89b826d..68a345f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ services: mysql: image: mysql:8.0 - command: --default-authentication-plugin=mysql_native_password --character-set-server=utf8mb4 --collation-server=utf8_bin + command: --default-authentication-plugin=mysql_native_password --character-set-server=utf8 --collation-server=utf8_bin restart: always environment: MYSQL_ROOT_PASSWORD: mypassword