初始化项目提交,并添加 flowable 7 的 dm 兼容
This commit is contained in:
157
sql/tools/docker-compose.yaml
Normal file
157
sql/tools/docker-compose.yaml
Normal file
@@ -0,0 +1,157 @@
|
||||
name: ruoyi-vue-pro
|
||||
|
||||
volumes:
|
||||
mysql: { }
|
||||
# postgres: { }
|
||||
# sqlserver: { }
|
||||
# dm8: { }
|
||||
# kingbase: { }
|
||||
# opengauss: { }
|
||||
|
||||
services:
|
||||
mysql:
|
||||
image: mysql:8.0.33
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
TZ: Asia/Shanghai
|
||||
MYSQL_ROOT_PASSWORD: 123456
|
||||
MYSQL_DATABASE: ruoyi-vue-pro
|
||||
ports:
|
||||
- "3306:3306"
|
||||
volumes:
|
||||
- mysql:/var/lib/mysql/
|
||||
# 注入初始化脚本
|
||||
- ./mysql/ruoyi-vue-pro.sql:/docker-entrypoint-initdb.d/init.sql:ro
|
||||
command:
|
||||
--default-authentication-plugin=mysql_native_password
|
||||
--character-set-server=utf8mb4
|
||||
--collation-server=utf8mb4_general_ci
|
||||
--explicit_defaults_for_timestamp=true
|
||||
--lower_case_table_names=1
|
||||
#
|
||||
# postgres:
|
||||
# image: postgres:14.2
|
||||
# restart: unless-stopped
|
||||
# environment:
|
||||
# POSTGRES_USER: root
|
||||
# POSTGRES_PASSWORD: 123456
|
||||
# POSTGRES_DB: ruoyi-vue-pro
|
||||
# ports:
|
||||
# - "5432:5432"
|
||||
# volumes:
|
||||
# - postgres:/var/lib/postgresql/data
|
||||
# # 注入初始化脚本
|
||||
# - ../postgresql/quartz.sql:/docker-entrypoint-initdb.d/quartz.sql:ro
|
||||
# - ../postgresql/ruoyi-vue-pro.sql:/docker-entrypoint-initdb.d/ruoyi-vue-pro.sql:ro
|
||||
#
|
||||
# oracle:
|
||||
# image: gvenzl/oracle-xe:18-slim-faststart
|
||||
# restart: unless-stopped
|
||||
# environment:
|
||||
# ## 登录信息 SID: XE user: system password: oracle
|
||||
# ORACLE_PASSWORD: oracle
|
||||
# ports:
|
||||
# - "1521:1521"
|
||||
# volumes:
|
||||
# - ../oracle/ruoyi-vue-pro.sql:/tmp/schema.sql:ro
|
||||
# # 创建app用户: ROOT/123456@//localhost/XEPDB1
|
||||
# - ./oracle/1_create_user.sql:/docker-entrypoint-initdb.d/1_create_user.sql:ro
|
||||
# - ./oracle/2_create_schema.sh:/docker-entrypoint-initdb.d/2_create_schema.sh:ro
|
||||
#
|
||||
# oracle_m1:
|
||||
# image: einslib/oracle-19c:19.3.0-ee-slim-faststart
|
||||
# restart: unless-stopped
|
||||
# environment:
|
||||
# ## 登录信息 SID: FREE user: system password: oracle
|
||||
# ORACLE_PASSWORD: oracle
|
||||
# ports:
|
||||
# - "1521:1521"
|
||||
# volumes:
|
||||
# - ../oracle/ruoyi-vue-pro.sql:/tmp/schema.sql:ro
|
||||
# # 创建app用户: ROOT/123456@//localhost/XEPDB1
|
||||
# - ./oracle/1_create_user.sql:/docker-entrypoint-initdb.d/1_create_user.sql:ro
|
||||
# - ./oracle/2_create_schema.sh:/docker-entrypoint-initdb.d/2_create_schema.sh:ro
|
||||
#
|
||||
# sqlserver:
|
||||
# image: mcr.microsoft.com/mssql/server:2017-latest
|
||||
# restart: unless-stopped
|
||||
# environment:
|
||||
# TZ: Asia/Shanghai
|
||||
# ACCEPT_EULA: "Y"
|
||||
# SA_PASSWORD: "Yudao@2024"
|
||||
# ports:
|
||||
# - "1433:1433"
|
||||
# volumes:
|
||||
# - sqlserver:/var/opt/mssql
|
||||
# - ../sqlserver/ruoyi-vue-pro.sql:/tmp/schema.sql:ro
|
||||
# # docker compose exec sqlserver bash /tmp/create_schema.sh
|
||||
# - ./sqlserver/create_schema.sh:/tmp/create_schema.sh:ro
|
||||
#
|
||||
# dm8:
|
||||
# # docker load -i dm8_20240715_x86_rh6_rq_single.tar
|
||||
# image: dm8_single:dm8_20240715_rev232765_x86_rh6_64
|
||||
# restart: unless-stopped
|
||||
# environment:
|
||||
# PAGE_SIZE: 16
|
||||
# LD_LIBRARY_PATH: /opt/dmdbms/bin
|
||||
# EXTENT_SIZE: 32
|
||||
# BLANK_PAD_MODE: 1
|
||||
# LOG_SIZE: 1024
|
||||
# UNICODE_FLAG: 1
|
||||
# LENGTH_IN_CHAR: 1
|
||||
# INSTANCE_NAME: dm8_test
|
||||
# ports:
|
||||
# - "5236:5236"
|
||||
# volumes:
|
||||
# - dm8:/opt/dmdbms/data
|
||||
# - ../dm/ruoyi-vue-pro-dm8.sql:/tmp/schema.sql:ro
|
||||
#
|
||||
# kingbase:
|
||||
# image: kingbase_v009r001c001b0025_single_x86:v1
|
||||
## image: kingbase_v009r001c001b0025_single_arm:v1
|
||||
# restart: unless-stopped
|
||||
# environment:
|
||||
# DB_USER: root
|
||||
# DB_PASSWORD: 123456
|
||||
# ports:
|
||||
# - "54321:54321"
|
||||
# volumes:
|
||||
# - kingbase:/home/kingbase/userdata
|
||||
# - ../kingbase/ruoyi-vue-pro.sql:/tmp/schema.sql:ro
|
||||
#
|
||||
# opengauss:
|
||||
# image: opengauss/opengauss:5.0.0
|
||||
# restart: unless-stopped
|
||||
# environment:
|
||||
# GS_USERNAME: root
|
||||
# GS_PASSWORD: Yudao@2024
|
||||
# LD_LIBRARY_PATH: /usr/local/opengauss/lib:/usr/lib
|
||||
# ports:
|
||||
# - "5432:5432"
|
||||
# volumes:
|
||||
# - opengauss:/var/lib/opengauss
|
||||
# - ../opengauss/ruoyi-vue-pro.sql:/tmp/schema.sql:ro
|
||||
# # docker compose exec opengauss bash -c '/usr/local/opengauss/bin/gsql -U $GS_USERNAME -W $GS_PASSWORD -d postgres -f /tmp/schema.sql'
|
||||
nacos:
|
||||
image: nacos/nacos-server:v2.5.1
|
||||
container_name: nacos-standalone-mysql
|
||||
environment:
|
||||
PREFER_HOST_MODE: hostname
|
||||
MODE: standalone
|
||||
SPRING_DATASOURCE_PLATFORM: mysql
|
||||
MYSQL_SERVICE_HOST: mysql
|
||||
MYSQL_SERVICE_DB_NAME: nacos_config
|
||||
MYSQL_SERVICE_PORT: 3306
|
||||
MYSQL_SERVICE_USER: root
|
||||
MYSQL_SERVICE_PASSWORD: 123456
|
||||
MYSQL_SERVICE_DB_PARAM: characterEncoding=utf8&connectTimeout=1000&socketTimeout=3000&autoReconnect=true&useUnicode=true&useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true
|
||||
NACOS_AUTH_IDENTITY_KEY: 2222
|
||||
NACOS_AUTH_IDENTITY_VALUE: 2xxx
|
||||
NACOS_AUTH_TOKEN: VGhpc0lzTXlDdXN0b21TZWNyZXRLZXkwMTIzNDU2Nzg=
|
||||
volumes:
|
||||
- ./standalone-logs/:/home/nacos/logs
|
||||
ports:
|
||||
# - "8080:8080"
|
||||
- "8848:8848"
|
||||
- "9848:9848"
|
||||
restart: always
|
||||
Reference in New Issue
Block a user