A community based topic aggregation platform built on atproto

fix(docker): pass TRUSTED_AGGREGATOR_DIDS to appview container

The env var was in .env.prod but not passed through to the container,
causing the trusted aggregator check to always fail.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

+4
docker-compose.prod.yml
··· 105 106 # Restrict community creation to instance DID only 107 COMMUNITY_CREATORS: did:web:coves.social 108 networks: 109 - coves-internal 110 depends_on:
··· 105 106 # Restrict community creation to instance DID only 107 COMMUNITY_CREATORS: did:web:coves.social 108 + 109 + # Trusted aggregators (bypass per-community authorization check) 110 + # Comma-separated list of DIDs 111 + TRUSTED_AGGREGATOR_DIDS: ${TRUSTED_AGGREGATOR_DIDS:-} 112 networks: 113 - coves-internal 114 depends_on: