3.环境变量 #进入容器 docker exec -it oracle11g /bin/bash #Linux 下Oracle环境变量设置 #编辑.bashrc 或者 .bash_profile,添加如下: cd /home/oracle vi .bashrc export ORACLE_SID=helowin export ORACLE_HOME=/home/oracle/app/oracle/product/11.2.0/dbhome_2 export PATH=$ORACLE_HOME/bin:$PATH #保...
docker pull oracleinanutshell/oracle-xe-11g 离线 tar包下载:链接: https://pan.baidu.com/s/1bRp6mSqYtMwIel1172NinA 提取码: 62in #导入镜像docker load < /root/oracle-xe.tar 创建容器 docker run -d -p 49161:1521 -e ORACLE_ALLOW_REMOTE=true -e ORACLE_DISABLE_ASYNCH_IO=true -e ORACLE...
一、从Docker Hub或阿里云镜像下载小麦苗上传的镜像文件 小麦苗的Docker Hub的地址:https://hub.docker.com/u/lhrbest Oracle 11g DB的地址:https://hub.docker.com/r/lhrbest/oracle_11g_ee_lhr_11.2.0.4 代码语言:javascript 复制 #从Docker hub下载,网络不好时,一般比较慢 docker pull lhrbest/oracle_11g_e...
1.下载镜像 邦德的Docker Hub主页:https://hub.docker.com/u/techerwangoracle 11g 11.2.0.4 DB的地址:https://hub.docker.com/r/techerwang/oracle/tags#从Docker hub下载,网络不好时,一般比较慢docker pull techerwang/oracle:ora11g11204#可以选择从阿里云下载docker pull registry.cn-shanghai.aliyuncs.com/t...
一、从Docker Hub或阿里云镜像下载小麦苗上传的镜像文件 #从Docker hub下载,网络不好时,一般比较慢 docker pull lhrbest/oracle_11g_ee_lhr_11.2.0.4:1.0 # 可以选择从阿里云下载,一般比较快 docker pull registry.cn-hangzhou.aliyuncs.com/lhrbest/oracle_11g_ee_lhr_11.2.0.4:1.0 ...
1、下载oracle11g的镜像文件 这里我使用的镜像文件是:registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g,这个镜像文件有6.85G这么大,下载需要几分钟的时间。 [root@iZbp13sno1lc2yxlhjc4b3Z~]# docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g[root@iZbp13sno1lc2yxlhjc4b3Z~]# docker...
1.在oracle官网下载数据库 linux.x64_11gR2_database_1of2.zip linux.x64_11gR2_database_2of2.zip 2.解压 unzip linux.x64_11gR2_database_1of2.zip -d ~/t unzip linux.x64_11gR2_database_2of2.zip -d ~/t 2.拉取镜像 docker pull jaspeen/oracle-11g ...
1、下载oracle11g资源文件 docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g 1. 文件6.85 GB、大约需要十分钟的时间。 2、查看下载完成后的镜像文件 docker images 1. 3、创建oracle容器 docker run -d -p 1521:1521 --name docker_oracle11g registry.cn-hangzhou.aliyuncs.com/helowin/oracle...
一、获取取镜像 执行命令: # docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g 下载的过程少长,镜像约为6.8G 下载完成后 查看镜像: docker images 二、镜像重新命名 [root@whdata3 ~]# docker tag 3fa112fd3642 oracle:11g 三、创建容器 ...
# 1.下载镜像 [root@summer summer]# docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g Using default tag: latest latest: Pulling from helowin/oracle_1...