Reputation: 1289
Is it possible to create an Oracle PDB Container Database using a YML file similar to Docker file format.
IF Oracle calls PDB/CDB as Pluggable Container Database, shouldn't the container file format be similar to Docker?
Thanks, Rajesh
Upvotes: 0
Views: 729
Reputation: 2453
The notion of container is different between Oracle Multi-tenant DB and Docker.
In Oracle Multi-tenant DB; container refers to pluggable/root database.
Where as Docker container:
Docker containers wrap a piece of software in a complete filesystem that contains everything needed to run: code, runtime, system tools, system libraries – anything that can be installed on a server.
Like .yml/.yaml
is used for Docker compose file, .xml
is used to plug/unplug a PDB.
Upvotes: 1