Hello

I'm trying to run ofbiz in a docker container.

I have a dockerfile where I'm able to install and run OFBiz It is viewable
at https://github.com/magick93/OFBiz-Docker/blob/from_zip/Dockerfile

However, when I run this, using the following, but I get not response when
requesting https://localhost:8443/ecommerce
docker run ofbizdocker -p 8443:8443


The logs print out - a lot - including:
  / __ \/ ____/ __ )(_)___
 / / / / /_  / __  / /_  /
/ /_/ / __/ / /_/ / / / /_
\____/_/   /_____/_/ /___/  is started and ready.

But browsing to https://localhost:8443/ecommerce does not return a http
response.

Even from within the container:
curl -v http://localhost:8080/ecommerce
*   Trying 127.0.0.1...
* TCP_NODELAY set
* Connected to localhost (127.0.0.1) port 8080 (#0)
> GET /ecommerce HTTP/1.1
> Host: localhost:8080
> User-Agent: curl/7.58.0
> Accept: */*
>
< HTTP/1.1 302
< Location: /ecommerce/
< Transfer-Encoding: chunked
< Date: Mon, 06 Jun 2022 04:50:30 GMT
<
* Connection #0 to host localhost left intact

Does anyone know what I'm doing wrong?

Thanks

Reply via email to