e6911a184c
The previous attempt's `docker compose down` removed the project's network, but on the subsequent `docker compose up`, the postgrest container was being recreated rather than created from scratch, and its network attachment still pointed to the now-orphaned old network ID. The new db/minio containers attached to the freshly-created network fine; only postgrest failed with 'network ... not found'. `-d --force-recreate` tells docker compose to throw away any existing container state and build from scratch, eliminating stale network references.