...
$ docker info
$ docker run hello-world
$ docker
$ docker docker subcommand --help
$ docker search image
$ docker pull image
$ docker images
$ docker rm image
$ docker run -it image
- t: launch console
$ docker ps
$ docker stop image or containerID
$ docker restart image or containerID
$ docker rm --force image or containerID
$ docker cp file in host image or containerID:/path and name in container
Example: docker cp abc.txt my-alpine:/tmp/bcd.txt
$ docker cp image or containerID:/path and name in container file in host
Example: docker cp my-alpine:/root/data/xyz.txt /tmp/xyz.txt
$ exit
https://github.com/manuparra/MasterDegreeCC_Practice/blob/master/starting_docker.md
https://zeroturnaround.com/rebellabs/docker-commands-and-best-practices-cheat-sheet/
https://howtoprogram.xyz/2017/02/25/copy-files-host-docker-container-vice-versa/
https://www.digitalocean.com/community/tutorials/como-instalar-y-usar-docker-en-ubuntu-16-04-es