提交 ea1bac05 编写于 作者: ibizdev's avatar ibizdev

xignzi006 发布系统代码

上级 85c9810e
version: "3.2"
services:
iBizBusinessCentral-postgresql:
container_name: postgres
image: postgres
restart: always
environment:
POSTGRES_DB: odoo
POSTGRES_USER: odoo
POSTGRES_PASSWORD: root
ports:
- 5432:5432
volumes:
- $PWD/../../../../volumes/postgresql/:/var/lib/postgresql/data
networks:
- agent_network
networks:
agent_network:
attachable: true
create schema if not exists odoo;
set schema odoo;
......@@ -21,10 +21,10 @@ spring:
max-file-size: 100MB
max-request-size: 100MB
datasource:
username: root
password: 'root'
url: jdbc:mysql://127.0.0.1:3306/iBizBusinessCentral?autoReconnect=true&useUnicode=true&characterEncoding=UTF-8&useOldAliasMetadataBehavior=true&allowMultiQueries=true
driver-class-name: com.mysql.jdbc.Driver
username: odoo
password: 'odoo'
url: jdbc:postgresql://172.16.102.46:5432/postgres
driver-class-name: org.postgresql.Driver
filters: stat,wall,log4j2
#配置初始化大小/最小/最大
initial-size: 1
......@@ -44,7 +44,7 @@ spring:
pool-prepared-statements: false
max-pool-prepared-statement-per-connection-size: 20
isSyncDBSchema: false
defaultSchema: root
defaultSchema: odoo
conf: classpath:liquibase/master.xml
#Mybatis-plus配置
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册