From 37e5c9373545cc07a653cd377e261b03a4efa8ea Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 1 Jun 2024 01:49:33 +0200 Subject: [PATCH] fix setting --- docker/WebDockerfile | 1 + docker/sql/init.sql | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docker/WebDockerfile b/docker/WebDockerfile index 0b77aba..cb90f84 100644 --- a/docker/WebDockerfile +++ b/docker/WebDockerfile @@ -10,6 +10,7 @@ RUN apt-get update && \ apache2 \ software-properties-common \ wget \ + git \ gnupg2 \ lsb-release diff --git a/docker/sql/init.sql b/docker/sql/init.sql index 55a7d18..fd1a06b 100644 --- a/docker/sql/init.sql +++ b/docker/sql/init.sql @@ -1,2 +1,3 @@ +SET GLOBAL log_bin_trust_function_creators = 1; CREATE DATABASE IF NOT EXISTS oms; -USE oms; \ No newline at end of file +USE oms;