started mysql/server

This commit is contained in:
andreas
2023-04-02 11:16:26 +00:00
parent e017c4e457
commit 878e544e87
13 changed files with 178 additions and 95 deletions

8
migration.sh Normal file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env bash
docker exec -it kopano-mysql-1 sh <<DCKR
mysql -u root -p <<SQL
CREATE USER 'kopano' IDENTIFIED BY 'Asdf2345';
GRANT ALL ON kopano.* TO 'kopano'@'%';
DROP DATABASE kopano;
SQL
DCKR