Docker install Weblogic

1. Pull the Weblogic image

docker pull ismaleiva90/weblogic12

 If no image version is specified later, the default latest version will be obtained               

and

docker pull ismaleiva90/weblogic12:latest

it's the same

2. Verify whether the image is pulled successfully

docker images

3. Create and start the Weblogic container

 

docker run -dit -p 7001:7001 -p 7002:7002 --restart=always ismaleiva90/weblogic12:latest

5. Verify that the container is running successfully

docker ps

​​​​​​​

6. Visit the Weblogic page, enter your ip plus port 7001/console

7. Default login account

Username: weblogic
Password: welcome1

Guess you like

Origin blog.csdn.net/qq_36539042/article/details/117608066