A simple and smol public docker image for testing
run the image from dockerhub:
docker run cruisercoder/dockerdemobuild the image:
docker build -t demo .run the image locally from local git checkout
docker run demorun in interactive mode with bash
docker run -it demo /bin/bashrun in interactive mode with bash and the current working directory mounted in /data
docker run -it -v ${PWD}:/data demo /bin/bashpush to dockerhub:
docker push cruisercoder/dockerdemoThis image will appear at this URL: