tiny Python project, for testing Docker and other tools
- build image
docker build -t fortune-app .
- run container, mapping internal port to outside
docker run -it --rm -P fortune-app
- open browser to the container's outside port
open http://$(docker-machine ip default):8000
TBD