WASdev / ci.docker.websphere-traditional

Dockerfiles for WebSphere Application Server traditional
Apache License 2.0
170 stars 190 forks source link

Port 9080 applications #228

Open cezarsg opened 3 years ago

cezarsg commented 3 years ago

I cant acesss deployed applications at port 9080. How should it work? Look like this port is not exposed ou is it another port??

BradleyMayo commented 3 years ago

Are you mapping the ports when you do docker run? From the main README:

Running the image by using the default values

   docker run --name was-server -h was-server -p 9043:9043 -p 9443:9443 -d \
   websphere-traditional:latest
srbala commented 3 years ago

Usually WebSphere uses four different ports in its deployment by default, 9043, 9060, 9080 and 9443. Extending @BradleyMayo answer, full bind will be...

   docker run --name was-server -h was-server -p 9043:9043 -p 9060:9060 -p 9080:9080 -p 9443:9443 -d \
   websphere-traditional:latest

Few tips to note for those new to docker...

srbala commented 3 years ago

@cezarsg this is not an issue, try the responses above and close the issue

srbala commented 3 years ago

@cezarsg any update?

@BradleyMayo this is not an issue, please review and close