https://github.com/ulisesgascon/poc-docker-johnny-five
Proof of Concept - how to Dockerize your next IOT project with Johnny-five
https://github.com/ulisesgascon/poc-docker-johnny-five
arduino docker johnny-five poc
Last synced: about 1 month ago
JSON representation
Proof of Concept - how to Dockerize your next IOT project with Johnny-five
- Host: GitHub
- URL: https://github.com/ulisesgascon/poc-docker-johnny-five
- Owner: UlisesGascon
- License: mit
- Created: 2023-06-06T15:10:24.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-03T21:41:19.000Z (almost 3 years ago)
- Last Synced: 2026-01-13T07:46:25.896Z (5 months ago)
- Topics: arduino, docker, johnny-five, poc
- Language: Dockerfile
- Homepage: https://blog.ulisesgascon.com/dockerize-js-iot-applications
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# POC-docker-johnny-five
Proof of Concept - how to Dockerize your next IOT project with Johnny-five
## Introduction
This POC was built to support the article [Dockerize Javascript IOT Applications](https://blog.ulisesgascon.com/dockerize-js-iot-applications).
## Commands
Build the Docker image:
```bash
docker build -t blink .
```
Run the Docker image:
```bash
docker run --device=/dev/ttyUSB --privileged -it blink
```
Note: In my case the USB device was connected in `/dev/ttyUSB0`, but you can check yours with [this guide](https://www.mathworks.com/help/supportpkg/arduinoio/ug/find-arduino-port-on-windows-mac-and-linux.html)