acoustic-baker-72585
12/24/2024, 1:49 PMnetflixoss/metaflow_metadata_service:v2.4.13
and cloning the repo and building myself, both with build ARG UI_ENABLED="1"
and through the ENV, I do not understand why isnt the container listening on port 8083. According to README it is available and listening on 8083, and it was available in the version 2.4.3. This is ps aux
output from container:
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:8080 0.0.0.0:* LISTEN 21/python
tcp 0 0 0.0.0.0:8082 0.0.0.0:* LISTEN 11/python3
tcp6 0 0 :::3000 :::* LISTEN -
acoustic-baker-72585
12/24/2024, 1:59 PMacoustic-baker-72585
12/24/2024, 2:36 PM/opt/latest/bin/python3 -m services.ui_backend_service.ui_server
but I get 404 on main page?acoustic-baker-72585
12/24/2024, 3:20 PMthankful-ambulance-42457
01/02/2025, 1:37 PMthankful-ambulance-42457
01/02/2025, 2:03 PMdocker run -p 80:8083 -e MF_METADATA_DB_HOST=host.docker.internal netflixoss/metaflow_metadata_service:v2.4.13 "/opt/latest/bin/python3" "-m" "services.ui_backend_service.ui_server"
The UI is accessible just fine on localhost with this.thankful-ambulance-42457
01/02/2025, 2:05 PMUI_ENABLED=0
to the env, then as expected I get a 404, as the service is not serving the UI assets at that point anymore.acoustic-baker-72585
01/03/2025, 8:55 AM