添加docker支持

This commit is contained in:
RuoYi
2021-06-02 09:58:36 +08:00
parent fc7bd9a35d
commit 63d7e816ff
18 changed files with 429 additions and 1 deletions

View File

@@ -1,3 +1,12 @@
DROP DATABASE IF EXISTS `ry-seata`;
CREATE DATABASE `ry-seata` DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
USE `ry-seata`;
-- -------------------------------- The script used when storeMode is 'db' --------------------------------
-- the table to store GlobalSession data
CREATE TABLE IF NOT EXISTS `global_table`