Skip to content

playniuniu/docker-weblogic-domain

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Docker for Weblogic with domain

Description

This is Oracle Weblogic 12.2.1.2 Docker image

Run

Go to compose folder and run

docker-compose up -d

Run step by step

1. create bridge network

docker network create -d bridge weblogic

2. Run AdminServer

docker run -d -p 8001:8001 --net weblogic --name=wlsadmin playniuniu/weblogic-domain:12.2.1.2

You can login your web with https://127.0.0.1:8001/console

Login using weblogic/welcome1 and verify that only one server (Admin Server) exists.

Run ManagedServer

docker run -d --net weblogic -p 7001:7001 -e MS_NAME=ManageServer-01 playniuniu/weblogic-domain:12.2.1.2 create-managed.sh

docker run -d --net weblogic -p 7002:7001 -e MS_NAME=ManageServer-02 playniuniu/weblogic-domain:12.2.1.2 create-managed.sh

Login to AdminServer and notice that a new Managed Server has been created and it is up and running.

Other

I also build a AdminServer image with sshd, you can check it playniuniu/weblogic-sshd

About

Docker for CentOS Weblogic with domain

Resources

Stars

Watchers

Forks

Packages

No packages published