Sign inSign up

grinco/blynk

By grinco

Updated over 9 years ago

Blynk is a Platform with iOS and Android apps to control Arduino, Raspberry Pi and other IoT Devices

Image
1

519

grinco/blynk repository overview

Blynk Server Docker Image

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 mpherg/blynk-server: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).

Tag summary

Content type

Image

Digest

Size

130 MB

Last updated

over 9 years ago

docker pull grinco/blynk