Distribute Docker Compose Services with an Overlay Network

Overlay Networks Overlay networks are an abstraction that make it possible for nodes on otherwise disconnected networks to communicate as if they are on the same network. Turns out their is a way to do this with docker networking so you can run your services from a docker compose on different machines without them having to know about it. The services can all continue to talk to each other using the docker DNS names without concern for where the other services are actually located!...

March 13, 2024 · 3 min · 611 words · Caleb Wightman