Q2 Single choice Flag What happens when the following command is executed twice in succession?doker run -tid -v data:/data debian bash A The second command invocation fails with an error stating that the volumen data is already associated with a running container. B The container resulting from the second invocation can only read the content of /data/ and can not change it. C The original content of the contents of the data is available in both containers, although changes staylocal within each container. D Both containers share the container of the data volume, have full permissions to alter its content andmutually see their repective changes. E Each container is equipped with its own independent data volumen, available at /data/ in the respective container. Correct answer