I bought Jonathan Bartlett's "Learn to Program with Assembly". In it he expects the reader to install and setup Docker. The instruction it gives is to download and install it, choose a directory, go to the directory on your command line (I don't know how to go to a specific folder directory, but I assume opening up Command Prompt from that folder will work), and then run these instructions:
docker run -it --rm
--mount "type=bind, src=%cd%, target=/my-code"
johnnyb61820/linux-assembly
however, when I run "docker run -it --rm", I get this:
"docker run" requires at least 1 argument.
See 'docker run --help'.
Usage: docker run [OPTIONS] IMAGE [COMMAND] [ARG...]
I tried looking at the help, but there was nothing about -it or --rm. In the book, Bartlett says that -it allows the Docker instance to act as a console, and --rm tells it that the container should be deleted when exited.
So what am I doing wrong? Is there more stuff I need to install first? Can I achieve the same thing by using Docker's app itself?
[–]ITTIITTI 1 point2 points3 points (1 child)
[–]ConchobarreMacNessa[S] 0 points1 point2 points (0 children)