Linux interview questions
Docker
When you run commands:

root@server-01:~# docker run --rm -it debian bash
root@b158e6dbd41e:/# echo "test" > example.txt

which completely describes the process:
You've created the file on a writable container layer
You've created the file on a image
You've created the file on a host filesystem
next

1 2 3