ec1f5e5c8f
Both reported (unhealthy) in docker ps. Two distinct root causes: * news-digest-web: switched from nginx:alpine to python:3.12-alpine (uvicorn) but kept the wget healthcheck against `localhost`. Alpine's /etc/hosts maps localhost to BOTH ::1 and 127.0.0.1; busybox wget tries IPv6 first, hits "connection refused" because uvicorn binds IPv4-only, and doesn't fall back. Pinned to 127.0.0.1. * chatterbox: devnen's image is built from a python:3.10 base and doesn't ship curl, so `curl -fsS http://localhost:8004/api/model-info` failed with `/bin/sh: 1: curl: not found`. Replaced with a python urllib one-liner that fetches + asserts `b'"loaded":true' in body`, also pinned to 127.0.0.1 to dodge the same IPv4/IPv6 race. Both YAML extractions tested directly inside the running containers (via `sh < script`) — chatterbox python check returns 0 when the model is loaded.