Which command copies local file.txt into /tmp/ in a container named web?
file.txt
/tmp/
web
docker run file.txt web:/tmp/
docker exec cp file.txt web:/tmp/
docker cp file.txt web:/tmp/
docker cp web:/tmp/ file.txt