# docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g 下载的过程少长,镜像约为6.8G 下载完成后 查看镜像: docker images 二、镜像重新命名 [root@whdata3 ~]# docker tag 3fa112fd3642 oracle:11g 三、创建容器 [root@whdata3 ~]# docker run -d -p 1521:1521 --name oracle11g 3fa1...
1.在docker打开的情况下,使用下方命令拉去镜像,大概需要下载3个G的image文件 docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g 2.启动Oracle镜像并为镜像新建容器,注意此处的oracle11g即为容器名,可以自主设置 docker run -d -p 1521:1521 --name oracle11g registry.cn-hangzhou.aliyuncs.com/he...
1.在docker打开的情况下,使用下方命令拉去镜像,大概需要下载3个G的image文件 docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g 2.启动Oracle镜像并为镜像新建容器,注意此处的oracle11g即为容器名,可以自主设置 docker run -d -p 1521:1521 --name oracle11g registry.cn-hangzhou.aliyuncs.com/he...
docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g 1.2 查看是否拉取成功 [root@localhost project]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g latest 3fa112fd3642 7 years ago 6.85GB 1.3 重命名 docker tag registry.cn-hangzho...
1、拉取 docker 镜像: 命令:docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g 该镜像由阿里云提供,比较大,可能需要下载一会,等待下载即可。 2、查看 docker 镜像: 命令:docker images 然后运行镜像:docker run -d -p 1521:1521 --name oracle registry.aliyuncs.com/helowin/oracle_11g ...
1、 docker exec -it oracle11g bash 2、进行软连接 sqlplus /nolog 发现没有这个命令,用不了 3、切换到root 用户下 su root 密码:helowin 注意这里还是在容器当中。。有朋友退去了。。。 4、编辑profile文件配置ORACLE环境变量 export ORACLE_HOME=/home/oracle/app/oracle/product/11.2.0/dbhome_2 export OR...
1、安装docker环境。 2、开始拉取oracle镜像(时间比较久,建议docker使用阿里云镜像) docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g 1. 3、下载完成后,查看镜像 ocker images 1. 4、创建容器 docker run -d -p 1521:1521 --name oracle11g registry.cn-hangzhou.aliyuncs.com/helowin/oracle...
docker commit oracle11g oracle11g-installed Database located in/opt/oraclefolder OS users: root/install oracle/install DB users: SYS/oracle Optionally you can map dpdump folder to easy upload dumps: docker run --privileged --name oracle11g -p 1521:1521 -v<install_folder>:/install -v<local_...
1.采用 docker-compose 安装 1.创建相关文件 mkdir/usr/local/docker cd/usr/local/docker mkdiroracle cdoracle touchdocker-compose.yml 1. 2. 3. 4. 5. 2.docker-compose.yml 配置文件的内容如下 version:'3.1' services: master: image: registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g ...
oraclelinux Official Docker builds of Oracle Linux. 573[OK] jaspeen/oracle-11g Docker imageforOracle 11g database 99[OK] oracle/openjdk Docker images containing OpenJDK Oracle Linux 55[OK] …… 2.1.2、选择安装 jaspeen/oracle-11g,等待下载安装完成 ...