Skip to content

Docker image that runs the Blynk server

License

Notifications You must be signed in to change notification settings

maxbanton/blynk-server

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Unofficial Blynk Server Docker Image for ARMv7

Runs your own Blynk Server in a Docker on ARMv7 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 maxbanton/blynk-server:latest

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

docker run -p 8080:8080 -p 8441:8441 -p 9443:9443 maxbanton/blynk-server:latest

To persist data, mount a directory into the container:

docker run -v $(PWD):/data maxbanton/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 maxbanton/blynk-server:latest

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

Based on mpherg's work

About

Docker image that runs the Blynk server

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dockerfile 100.0%