add oracle
This commit is contained in:
parent
a117c49228
commit
929dbd03d5
|
@ -0,0 +1,37 @@
|
|||
additionalProperties:
|
||||
formFields:
|
||||
- default: "ORCL"
|
||||
edit: true
|
||||
envKey: ORACLE_SID
|
||||
labelEn: ORACLE_SID
|
||||
labelZh: ORACLE_SID
|
||||
required: true
|
||||
type: text
|
||||
- default: "ORCLPDB"
|
||||
edit: true
|
||||
envKey: ORACLE_PDB
|
||||
labelEn: ORACLE_PDB
|
||||
labelZh: ORACLE_PDB
|
||||
required: true
|
||||
type: text
|
||||
- default: "orcl"
|
||||
edit: true
|
||||
envKey: ORACLE_PWD
|
||||
labelEn: ORACLE_PWD
|
||||
labelZh: ORACLE_PWD
|
||||
required: true
|
||||
type: text
|
||||
- default: "standard"
|
||||
edit: true
|
||||
envKey: ORACLE_EDITION
|
||||
labelEn: ORACLE_EDITION
|
||||
labelZh: ORACLE_EDITION
|
||||
required: false
|
||||
type: text
|
||||
- default: "ZHS16GBK"
|
||||
edit: true
|
||||
envKey: ORACLE_CHARACTERSET
|
||||
labelEn: ORACLE_CHARACTERSET
|
||||
labelZh: ORACLE_CHARACTERSET
|
||||
required: true
|
||||
type: text
|
|
@ -0,0 +1,20 @@
|
|||
services:
|
||||
oracle:
|
||||
image: registry.cn-hangzhou.aliyuncs.com/zhuyijun/oracle:19c
|
||||
container_name: oracle
|
||||
ports:
|
||||
- "1525:1521" # 映射端口1521到宿主机的1525
|
||||
- "5500:5500" # 映射端口5500到宿主机的5500
|
||||
environment:
|
||||
ORACLE_SID: ${ORACLE_SID}
|
||||
ORACLE_PDB: ${ORACLE_PDB}
|
||||
ORACLE_PWD: ${ORACLE_PWD}
|
||||
ORACLE_EDITION: ${ORACLE_EDITION}
|
||||
ORACLE_CHARACTERSET: ${ORACLE_CHARACTERSET}}
|
||||
volumes:
|
||||
- ./data/oracle/oradata:/opt/oracle/oradata # 挂载数据卷
|
||||
deploy:
|
||||
mode: replicated
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
|
@ -0,0 +1,19 @@
|
|||
name: oracle
|
||||
tags:
|
||||
- 中间件
|
||||
title: oracle
|
||||
description: oracle
|
||||
additionalProperties:
|
||||
key: oracle
|
||||
name: oracle
|
||||
tags:
|
||||
- Middleware
|
||||
shortDescZh: oracle
|
||||
shortDescEn: oracle
|
||||
type: tool
|
||||
crossVersionUpdate: false
|
||||
limit: 1
|
||||
recommend: 0
|
||||
website: https://nacos.io/
|
||||
github: https://github.com/alibaba/nacos
|
||||
document: https://nacos.io/docs/latest/what-is-nacos/
|
Binary file not shown.
After Width: | Height: | Size: 2.2 KiB |
Loading…
Reference in New Issue