Container instance UI not showing up on Port 8443

Viewed 48

I'm trying to get a simple nifi container up and running within azure conatiner instance.

docker run --name nifi \
  -p 8443:8443 \
  -d \
  -e SINGLE_USER_CREDENTIALS_USERNAME=admin \
  -e SINGLE_USER_CREDENTIALS_PASSWORD=ctsBtRBKHRBrTUASABOUghvvgEvjnaLjJAn \
  apache/nifi:latest

It shows up running within the portal and via cli:

CONTAINER ID        IMAGE                                       COMMAND             STATUS              PORTS
nifi                ***********.azurecr.io/apache/nifi:latest                       Running             **.***.***.***:80->80/tcp, **.***.***.***:8443->8443/tcp

I can curl into the container:

curl -kv **.***.***.***:8443
*   Trying **.***.***.***:8443...
* Connected to **.***.***.*** (**.***.***.***) port 8443 (#0)
> GET / HTTP/1.1
> Host: **.***.***.***:8443
> User-Agent: curl/7.79.1
> Accept: */*
> 
* Recv failure: Connection reset by peer
* Closing connection 0
curl: (56) Recv failure: Connection reset by peer

But I cannot bring up the NiFi UI. I keep getting, the site cannnot be reached.

ping results:

ping **.***.***.*** -c5
PING **.***.***.*** (**.***.***.***): 56 data bytes
Request timeout for icmp_seq 0
Request timeout for icmp_seq 1
Request timeout for icmp_seq 2
Request timeout for icmp_seq 3

--- **.***.***.*** ping statistics ---
5 packets transmitted, 0 packets received, 100.0% packet loss

Can you please tell me where I am going wrong?

0 Answers
Related