Pull Oracle WebLogic Base Image
1. Pull the Oracle web-logic Server image from container-registry.oracle.com Version: 12.2.1.4.
2. Before pulling this image from the Container Registry, make sure that the Docker client has logged in successfully using the docker login command:
# docker login container-registry.oracle.com
Username
Password
Login successful.
3. Use your Oracle SSO username and password to log in to the Oracle Registry.
4. Pull Weblogic base image version 12.2.1.4:
$ docker pull container-registry.oracle.com/middleware/weblogic:12.2.1.4
Important: The resulting images will NOT have a domain pre-configured. You must extend the image with your own Dockerfile, and create your domain using WLST.
To customize your own WebLogic Server domain extended this image. We recommend you to create your own domain by writing your own Dockerfiles, and using WebLogic Scripting Tool (WLST) to create clusters, Data Sources, JMS Servers, Security Realms, and deploy applications.
5. In the Dockerfile extend the WebLogic Server image with the 'FROM container-registry.oracle.com/middleware/weblogic:12.2.1.4' directive.