docker run --rm -it -v ${PWD}:/src/scripts --name XXXXXX IMAGENAME /bin/bash
--rm
this instance will be deleted once we 'exit' the image-it
interactive mode-v
sharing folders (called sharing VOLUMES)${PWD}
source folder:
denotes that we're sharing between these two volumes