우아한 프로그래밍
version: "3.8"

services:
  oracle:
    image: oracleinanutshell/oracle-xe-11g
    container_name: oracle-db
    hostname: oracle-db
    restart: always
    ports:
      - "1521:1521"
      - "8080:8080" # Oracle Enterprise Manager HTTP port
    environment:
      ORACLE_SID: XE
      ORACLE_PWD: oracle
      ORACLE_USERNAME: system
      ORACLE_ALLOW_REMOTE: true
    volumes:
      - oradata:/oradata/orcl

volumes:
  oradata:
profile

우아한 프로그래밍

@자바조아!

포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!