Build docker image in gitlab, add docs for turn key docker setup

This commit is contained in:
Kevin McKernan
2021-11-27 04:45:21 +00:00
committed by Ariel Rin
parent 8b8dcc0127
commit 930c5d7c7a
18 changed files with 552 additions and 0 deletions

7
docker/setup.base.sql Normal file
View File

@@ -0,0 +1,7 @@
CREATE USER 'aauth'@'%' IDENTIFIED BY 'authpass';
CREATE USER 'grafana'@'%' IDENTIFIED BY 'grafanapass';
CREATE DATABASE alliance_auth CHARACTER SET utf8mb4;
GRANT ALL PRIVILEGES ON alliance_auth.* TO 'aauth'@'%';
GRANT
SELECT,
SHOW VIEW ON alliance_auth.* TO 'grafana'@'%';