@@ -0,0 +1,5 @@
+-- pigx 核心表
+create database `pigxx` default character set utf8mb4 collate utf8mb4_general_ci;
+
+-- pigx 工作流相关库
+create database `pigxx_acl` default character set utf8mb4 collate utf8mb4_general_ci;
@@ -13,6 +13,7 @@
Date: 11/28/2018 16:11:29 PM
*/
+USE pigxx;
SET NAMES utf8;
SET FOREIGN_KEY_CHECKS = 0;
Date: 12/04/2018 00:03:49 AM
+USE pigxx_acl;
+FROM mysql:5.7
+MAINTAINER lengleng(wangiegie@gmail.com)
+COPY 1schema.sql /docker-entrypoint-initdb.d
+COPY 2pigxx.sql /docker-entrypoint-initdb.d
+COPY 3pigxx_ac.sql /docker-entrypoint-initdb.d
@@ -1,5 +1,17 @@
version: '2'
services:
+ pigx-mysql:
+ build:
+ context: ./
+ dockerfile: ./doc/db/Dockerfile
+ environment:
+ MYSQL_ROOT_PASSWORD: root
+ restart: always
+ container_name: pigx-mysql
+ image: pigx-mysql
+ ports:
+ - 3306:3306
pigx-zookeeper:
image: zookeeper:3.4.13
ports: