Docker
Oracle 11g Docker Compose File Example
탑~!
2025. 3. 7. 14:40
services:
oracle:
image: oracleinanutshell/oracle-xe-11g:latest
container_name: oracle11g
hostname: oracle11g
restart: always
ports:
- "1522:1521"
- "8080:8080" # Oracle Enterprise Manager HTTP port
environment:
ORACLE_SID: ORCL
ORACLE_ALLOW_REMOTE: true
TZ: Asia/Seoul
volumes:
- ./oracle-data-11g:/opt/oracle/oradata
# Oracle 초기 비번은 oracle
SaveAs : Oracle.yml
Execute : docker-compose -f 경로\Oracle.yml up -d
728x90
반응형