I've been migrating marginalia search off docker-compose and onto systemd.
Between NUMA-concerns and the need to use multiple public IPs, I'm coaxed into a pretty exotic setup no matter what I choose to go with. Was pretty finnicky to set up, but it seems to work pretty well all said and done. Systemd is certainly feeling less floaty than docker (and even moreso kubernetes, which was never an option).
I also shaved like 10ms off response times since I no longer need an additional reverse proxy to deal with docker's networking magic, and can point nginx straight to the network namespaced services' IPs.
This in service of sequestering all wide domains (as in having tens of thousands of subdomains) to their separate crawler and index partition, as their (per top-domain) rate limits are part of why crawls take so long for the main crawler. Couldn't do that on docker because its ipvlan management is so jank you need spare IPs to reliably restart services.