Created
October 15, 2021 17:05
-
-
Save diegofcornejo/136fbc391dfbc1dfd252aa430affb75e to your computer and use it in GitHub Desktop.
Docker Weblogic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Download Image | |
docker pull store/oracle/weblogic:12.2.1.3-dev-190111 | |
or | |
docker pull store/oracle/weblogic:12.2.1.4-dev-200117 | |
Create properties file | |
touch domain.properties | |
The format of the domain.properties file is key value pair: | |
username=weblogic | |
password=W3bl0g!c | |
Run Container | |
docker run -d -p 7001:7001 -p 9002:9002 -v $PWD:/u01/oracle/properties store/oracle/weblogic:12.2.1.3-dev-190111 | |
or | |
docker run -d -p 7001:7001 -p 9002:9002 -v $PWD:/u01/oracle/properties store/oracle/weblogic:12.2.1.4-dev-200117 | |
Check if weblogic is running | |
docker logs [container] | |
Open console in browser | |
https://localhost:9002/console | |
Note: Accept unsafe navigation |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment