docker oracle-11 gをインストールしnavicatリンクで


1、oracleミラーをダウンロードする
docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g 

2、ミラーの起動
docker run -d -p 1521:1521 --name oracle_11g --restart=always registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g

3、oracleサービスの起動
docker start oracle_11g

4、容器内部への進入、oracle情報の設定
docker exec -it oracle_11g bash
#   root  ,         
su root
#password:helowin
#        profile /etc/profile
vi /etc/profile
#      
export ORACLE_HOME=/home/oracle/app/oracle/product/11.2.0/dbhome_2
export ORACLE_SID=helowin
export PATH=$ORACLE_HOME/bin:$PATH
#        
source /etc/profile
#   Oracle  ,         
su oracle
#  Oracle     
sqlplus /nolog
#   sysdba  ,     ,  
conn /as sysdba
alter user system identified by oracle;
alter user sys identified by oracle;
ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED;
#       
quit
#    
exit
#       
docker ps

4、Navicat接続oracle
IP:    ip
  : 1521
   :helowin;//  SID
  :system
  :oracle