Problem Statement
Which command lets you connect a running container to an existing Docker network?
Explanation
The command `docker network connect <network_name> <container>` attaches a running container to the specified network without stopping it. This supports dynamic networking adjustments in multi-container systems.
Code Solution
SolutionRead Only
docker network connect mynet container1
