Hello! Just recently started using nomad, liking it so far!
I just have one question. This is related to the docker driver and/or the networking with nomad.
So, in docker, I could create two docker bridge networks then have a container join both of these networks when started up from either docker run
or from a compose command docker compose up -d
and I am wondering if something is possible like this within nomad without directly interacting with the docker engine on the host?
A task group listed in a job can only create a single bridged network correct (for that group)? So, I guess I would need containers that need to connect to each other to be in the same task group which will put them on the same bridged network (and they would require to be in the same job?), do I have that correct? This would appear that I won’t be able to have a single container (task) join two nomad networks, or two different bridged networks from different task groups.
Let me know if I need to provide more information.