A clerk-office scanner plus a tiny log sidecar must start and stop together and share one private network namespace on Azure Container Instances. How should the containers be deployed?
Select an answer to reveal the explanation.
Short Explanation
Think of a container group as one shared studio apartment: same lease, same hallway, start and stop together. Two separate ACI instances are two different buildings—no shared localhost.
Full Explanation
An ACI container group schedules multiple Linux containers on one host with a shared lifecycle, network namespace, and optional volumes. Separate instances do not share localhost and are not coordinated as one unit. Sidecars do not require AKS when a multi-container group meets the need, and separate registries do not create shared networking.