update 初步适配oracle(未完成)

This commit is contained in:
疯狂的狮子li
2022-03-04 21:09:46 +08:00
parent 46fa404d83
commit 8ee749f137
15 changed files with 2017 additions and 256 deletions

View File

@@ -0,0 +1,17 @@
version: '3'
services:
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"
restart: always