Hi everyone, I want to run the container completely offline (no WAN access), while still being able to access the web UI locally via port mapping. I’m using a custom Docker network with a isolated_net network: docker network create --driver=bridge --subnet=172.20.0.0/24 --internal isolated_net ComfyUI fails to start if the container has no internet connection. Exits immediately with the following message: == Testing write access as the comfy user to the run directory
== Using default behavior: Enabling upgrades (behavior depends on USE_PIPUPGRADE)
== Installing uv
== Verify that python3 and uv are installed
- python3: /usr/bin/python3
version: Python 3.12.3
- uv: !! ERROR: subscript failed
!! Exiting script (ID: 1)
environment variables : DISABLE_UPGRADES=true USE_PIPUPGRADE=false …the container still attempts to install or verify uv on startup, and aborts when no internet is available. With access to the internet it starts. Is there a way to disable the automatic uv installation/upgrade checks on startup?