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
What am I missing ?