Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 1.34 KB

README.md

File metadata and controls

37 lines (24 loc) · 1.34 KB

Blynk Server Docker Image for ARMv7

Runs your own Blynk Server in a Docker container instead of relying on Blynk's public server.

Blynk is the "first drag-n-drop IoT app builder for Arduino, Raspberry Pi, ESP8266, SparkFun boards, and others." Super fun.

How To Use It

Easy peasy:

docker run jlutz/blynk-server-arm32v7:latest

To forward IP ports from the host to the container, do this:

docker run -p 7443:7443 -p 8443:8443 mpherg/blynk-server:latest

To persist data, mount a directory into the container:

docker run -v $(PWD):/data mpherg/blynk-server:latest

To include your own server.properties file, mount it into /config/server.properties

docker run -v $(PWD)/server.properties:/config/server.properties mpherg/blynk-server:latest

Or you can use a data volume in another container (check out different data volume techniques here).