微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

QuickStart之docker搭建Oracle

 

docker run --name myoracle1 \
-p 1512:1521 -p 5500:5500 \
-e ORACLE_PWD=Hao123.com \
-e ORACLE_CHaraCTERSET=AL32UTF8 \
-v /opt/data/oracle:/opt/oracle/oradata \
registry.cn-hangzhou.aliyuncs.com/zhuyijun/oracle

 

Parameters:
   --name:        The name of the container (default: auto generated)
   -p:            The port mapping of the host port to the container port.
                  Two ports are exposed: 1521 (Oracle Listener), 5500 (EM Express)
   -e ORACLE_PWD: The Oracle Database SYS, SYstem and PDB_ADMIN password (default: auto generated)
   -e ORACLE_CHaraCTERSET:
                  The character set to use when creating the database (default: AL32UTF8)
   -v /opt/oracle/oradata
                  The data volume to use for the database.
                  Has to be writable by the Unix "oracle" (uid: 54321) user inside the container!
                  If omitted the database will not be persisted over container recreation.
   -v /opt/oracle/scripts/startup | /docker-entrypoint-initdb.d/startup
                  Optional: A volume with custom scripts to be run after database startup.
                  For further details see the "Running scripts after setup and on startup" section below.
   -v /opt/oracle/scripts/setup | /docker-entrypoint-initdb.d/setup
                  Optional: A volume with custom scripts to be run after database setup.
                  For further details see the "Running scripts after setup and on startup" section below.

 

参考

https://github.com/oracle/docker-images

https://github.com/oracle/docker-images/blob/main/OracleDatabase/SingleInstance/README.md

 

https://github.com/wnameless/docker-oracle-xe-11g

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐