Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 1.14 KB

README.md

File metadata and controls

21 lines (14 loc) · 1.14 KB

GitHub last commit GitHub code size in bytes GitHub repo size Code Climate maintainability GitHub issues GitHub

VMC Lunch & Learn 2020 Webinar Series - Dropbear Server

This project contains a small sinatra app used as a demo during the VMC Lunch & Learn 2020 Webinar Series. It listens on the default port 4567.

Running with Docker

The app is dockerizied to make deploying and running it easy.

$ docker build -t dropbear-server https://github.com/mattycourtney/dropbear-server.git
$ docker run -d -p 80:4567 --name dropbear-server -t dropbear-server

When you've finished with the app, just stop the container.

$ docker stop dropbear-server