01. [20p] Running containers

Subtasks
  1. pull the busybox image from the official Docker registry to the local cache
  2. run a busybox container that executes the uptime command
  3. run an interactive busybox container; once you enter it, run the command wget google.com, then exit
  4. run a busybox detached interactive container (daemon); once you have started it, attach to it and run the id command, then exit
  5. delete all containers and images created at the previous points