https://hub.docker.com/r/ismaleiva90/weblogic12/
docker pull ismaleiva90/weblogic12
docker run -d --name myweblogic -p 49163:7001 -p 49164:7002 -p 49165:5556 ismaleiva90/weblogic12:latest
http://localhost:49163/console
User: weblogic
Pass: welcome1
exit ( go back to host )
generate a basic WAR:
mvn archetype:generate -DgroupId=com.mkyong -DartifactId=pippoWebApp -DarchetypeArtifactId=maven-archetype-webapp -DinteractiveMode=false
docker cp ./pippoWebApp/target/pippoWebApp.war myweblogic:/u01/oracle/weblogic/user_projects/domains/base_domain
then you have to manually deploy (copying to autodeploy doesn't work, this domain has PRODUCTION mode enabled)
http://localhost:7001/pippoWebApp/
See also http://www.javamonamour.org/2015/04/weblogic-deployment-with-docker.html
To get the image from Oracle itself:
https://blogs.oracle.com/weblogicserver/weblogic-server-certification-on-kubernetes
https://github.com/oracle/docker-images/tree/master/OracleWebLogic
git clone https://github.com/oracle/docker-images.git
cd docker-images/OracleWebLogic/dockerfiles
first you should download the JAr files and scp them here (this really sucks.... why not just curl them in place from a repository...)
./buildDockerImage.sh -v 12.2.1.3 -d -c
Friday, January 19, 2018
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment