Docker diff 命令
Last updated
Last updated
docker run -d --name my_container ubuntu bash -c "echo 'Hello, Docker!' > /hello.txt && sleep 3600"docker diff my_containerA /hello.txtdocker exec my_container rm /hello.txtdocker diff my_containerD /hello.txt