docker run --rm -it -v ${PWD}:/src/scripts --name XXXXXX IMAGENAME /bin/bash
--rmthis instance will be deleted once we 'exit' the image-itinteractive mode-vsharing folders (called sharing VOLUMES)${PWD}source folder:denotes that we're sharing between these two volumes/src/scriptsthe destination folder. In this case, it's inside a linux image. Also, this folder will be created./bin/bashthis is the command to run .. which means we now have a 'shell' to access/run stuff inside this image