From abb5395cae300892fd776573e2fbf4d7a6e0f93b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Sun, 8 Sep 2024 19:46:55 +0200 Subject: [PATCH] Use "log-bin-trust-function-creators" option for mysql in recommended docker-compose file This avoids errors, while creating the MySQL functions for the natural sort: "1419 You do not have the SUPER privilege an d binary logging is enabled" --- docs/installation/installation_docker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/installation/installation_docker.md b/docs/installation/installation_docker.md index 98fb82d1..5d357ae5 100644 --- a/docs/installation/installation_docker.md +++ b/docs/installation/installation_docker.md @@ -158,7 +158,7 @@ services: container_name: partdb_database image: mysql:8.0 restart: unless-stopped - command: --default-authentication-plugin=mysql_native_password + command: --default-authentication-plugin=mysql_native_password --log-bin-trust-function-creators=1 environment: # Change this Password MYSQL_ROOT_PASSWORD: SECRET_ROOT_PASSWORD