Nifi w/ Docker on Gitpod : No UI Access

92 Views Asked by At

I'm running a basic docker compose for nifi
(spinning on a Gitpod workspace) And I cant seem to be able to acces the NiFi UI

version: '3'
services:
  nifi:
    image: apache/nifi:latest
    container_name: nifi
    restart: unless-stopped
    network_mode: bridge
    ports:
      # HTTP
      - 8080:8080/tcp
      # HTTPS
      - 8443:8443/tcp

    environment:
      NIFI_WEB_HTTP_HOST: '0.0.0.0'
      NIFI_WEB_HTTP_PORT: 8080


Same with :

docker run --name nifi -p 8080:8080 -e NIFI_WEB_HTTP_HOST=0.0.0.0 -d apache/nifi:latest

enter image description here enter image description here enter image description here

What am I missing ?

1

There are 1 best solutions below

0
axonasif On

You may want to try using port forwarding: