|
@@ -0,0 +1,45 @@
|
|
|
|
|
+version: '3'
|
|
|
|
|
+
|
|
|
|
|
+services:
|
|
|
|
|
+ # 此镜像仅用于测试 正式环境需自行安装数据库
|
|
|
|
|
+ # SID: XE user: system password: oracle
|
|
|
|
|
+ oracle:
|
|
|
|
|
+ image: tekintian/oracle12c:latest
|
|
|
|
|
+ container_name: oracle
|
|
|
|
|
+ environment:
|
|
|
|
|
+ # 时区上海
|
|
|
|
|
+ TZ: Asia/Shanghai
|
|
|
|
|
+ DBCA_TOTAL_MEMORY: 16192
|
|
|
|
|
+ ports:
|
|
|
|
|
+ - "18080:8080"
|
|
|
|
|
+ - "1521:1521"
|
|
|
|
|
+ volumes:
|
|
|
|
|
+ # 数据挂载
|
|
|
|
|
+ - "/docker/oracle/data:/u01/app/oracle"
|
|
|
|
|
+ network_mode: "host"
|
|
|
|
|
+
|
|
|
|
|
+ postgres:
|
|
|
|
|
+ image: postgres:14.2
|
|
|
|
|
+ container_name: postgres
|
|
|
|
|
+ environment:
|
|
|
|
|
+ POSTGRES_USER: root
|
|
|
|
|
+ POSTGRES_PASSWORD: root
|
|
|
|
|
+ POSTGRES_DB: postgres
|
|
|
|
|
+ ports:
|
|
|
|
|
+ - "5432:5432"
|
|
|
|
|
+ volumes:
|
|
|
|
|
+ - /docker/postgres/data:/var/lib/postgresql/data
|
|
|
|
|
+ network_mode: "host"
|
|
|
|
|
+
|
|
|
|
|
+ postgres13:
|
|
|
|
|
+ image: postgres:13.6
|
|
|
|
|
+ container_name: postgres13
|
|
|
|
|
+ environment:
|
|
|
|
|
+ POSTGRES_USER: root
|
|
|
|
|
+ POSTGRES_PASSWORD: root
|
|
|
|
|
+ POSTGRES_DB: postgres
|
|
|
|
|
+ ports:
|
|
|
|
|
+ - "5433:5432"
|
|
|
|
|
+ volumes:
|
|
|
|
|
+ - /docker/postgres13/data:/var/lib/postgresql/data
|
|
|
|
|
+ network_mode: "host"
|