Practice this fail.
Get the report out.
Docker · Restart as often as you like
Read the error, choose a command, and learn
why it works. Nothing runs on your machine.
The container job has /tmp/report.txt. Copy it into the current host directory as report.txt, even though the container is stopped.
Get the report out.
$ docker ps -a
job Exited (0)
How do you copy the report from the container to the host?
Fixed. By hand.
docker cp job:/tmp/report.txt ./report.txtdocker cp uses container:path on the container side. It can copy from a running or stopped container; reversing the two arguments reverses the direction.
Practice does not affect your daily score or streak.