CI: Fix prod build scripts and add docker-compose.local.yml #2262

This commit is contained in:
Michael Mayer
2022-04-18 15:49:30 +02:00
parent 975c4cdca3
commit f093b498fa
16 changed files with 150 additions and 38 deletions

View File

@@ -0,0 +1,6 @@
DROP DATABASE IF EXISTS acceptance;
CREATE DATABASE IF NOT EXISTS acceptance;
CREATE USER IF NOT EXISTS acceptance@'%' IDENTIFIED BY 'acceptance';
GRANT ALL PRIVILEGES ON acceptance.* TO acceptance@'%';
FLUSH PRIVILEGES;