一、基础知识
Docker pull地址
docker pull registry.cn-shanghai.aliyuncs.com/techerwang/oracle:ora11g11204
docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g
docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/yycx/oracle11:11.2.0.4
docker pull registry.cn-shanghai.aliyuncs.com/techerwang/oracle:ora12c_12201
docker pull registry.cn-hangzhou.aliyuncs.com/zhuyijun/oracle:19c
docker pull registry.cn-shanghai.aliyuncs.com/techerwang/oracle:ora10g_10205
docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/yycx/oracle11:11.2.0.4
启动
docker run -d \
--name oracle19c \
-p 1521:1521 \
-p 5500:5500 \
-e ORACLE_SID=ORCLCDB \
-e ORACLE_PDB=ORCLPDB \
-e ORACLE_PWD=123456 \
-e ORACLE_CHARACTERSET=AL3UTF8 \
-v /opt/oracle/oradata:/opt/oracle/oradata \
--restart=always \
registry.cn-hangzhou.aliyuncs.com/zhuyijun/oracle:19c
dock