This project contains a small sinatra app used as a demo at vFORUM 2019. It listens on the default port 4567.
The app is dockerizied to make deploying and running it easy.
$ docker build -t sinatra-app https://github.com/mattycourtney/sinatra-app.git
$ docker run -d -p 80:4567 --name sinatra-app -t sinatra-app
When you've finished with the app, just stop the container.
$ docker stop sinatra-app