[docker] 오라클 버전 별 이미지 정리 및 실행 방법 (10g, 11g, 12c, 19c)
반응형
ORACLE 10G
docker pull sandersliu/docker-oracle-xe-10g
docker run -d -p 1521:1521 sandersliu/docker-oracle-xe-10g
sys / oracle
ORACLE 11G
docker pull wnameless/oracle-xe-11g-r2
docker run -d -p 1521:1521 wnameless/oracle-xe-11g-r2
sys / oracle
ORACLE 12C
docker pull docker.io/truevoly/oracle-12c
docker run -d -p 1521:1521 docker.io/truevoly/oracle-12c
sys / oracle
ORACLE 19C
docker pull doctorkirk/oracle-19c
# Copy the image
docker pull doctorkirk/oracle-19c
# Create local directory
mkdir -p */your/custom/path*/oracle-19c/oradata
# change own
cd */your/custom/path/*
sudo chown -R 54321:54321 oracle-19c/
docker run --name oracle-19c \
-p 1521:1521 \
-e ORACLE_SID=oracle \
-e ORACLE_PWD=oracle \
-e ORACLE_CHARACTERSET=WE8MSWIN1252 \
-v /jw/oracle-19c/oradata/:/opt/oracle/oradata \
doctorkirk/oracle-19c
sqlplus sys/oracle@oracle as sysdba
위 명령어로 접속해야 한다.
반응형
'⇥ DevOps Tech 🙋🏻♀️ > ✏️ Cloud' 카테고리의 다른 글
AWS (region, availability zone AZ, edge location) (0) | 2024.07.25 |
---|---|
[docker] iptables failed - No chain/target/match by that name (0) | 2022.06.21 |
[docker] image 파일 압축, 로드 하기 (0) | 2021.07.16 |
[docker] image & container 생성 경로 변경 (0) | 2021.07.16 |
[docker] Windows Subsystem for Linux 설정 방법 (0) | 2021.06.18 |
댓글
이 글 공유하기
다른 글
-
AWS (region, availability zone AZ, edge location)
AWS (region, availability zone AZ, edge location)
2024.07.25 -
[docker] iptables failed - No chain/target/match by that name
[docker] iptables failed - No chain/target/match by that name
2022.06.21 -
[docker] image 파일 압축, 로드 하기
[docker] image 파일 압축, 로드 하기
2021.07.16 -
[docker] image & container 생성 경로 변경
[docker] image & container 생성 경로 변경
2021.07.16