All Projects → mgcrea → Docker Node Opencv

mgcrea / Docker Node Opencv

Licence: mit
Docker image for NodeJS with OpenCV

Labels

Projects that are alternatives of or similar to Docker Node Opencv

Remixos Bootable Newinstaller
bootable/newinstaller - generate initrd.img and install.img
Stars: ✭ 10 (-16.67%)
Mutual labels:  makefile
Android device oppo find7
Device tree for Oppo Find 7/7a
Stars: ✭ 10 (-16.67%)
Mutual labels:  makefile
Last Makefile
The last makefile you'll ever need.
Stars: ✭ 11 (-8.33%)
Mutual labels:  makefile
Mynewt Documentation
Apache MyNewt Documentation
Stars: ✭ 10 (-16.67%)
Mutual labels:  makefile
Rock Bsp
Linux BSP for rockchip platform
Stars: ✭ 10 (-16.67%)
Mutual labels:  makefile
Android device semc urushi
SEMC Xperia Ray (ST18i)
Stars: ✭ 10 (-16.67%)
Mutual labels:  makefile
Influxdb Slurm Monitoring
Stars: ✭ 10 (-16.67%)
Mutual labels:  makefile
Tap
Stars: ✭ 12 (+0%)
Mutual labels:  makefile
Node Shmdb
the implementation of shmdb in node.js
Stars: ✭ 10 (-16.67%)
Mutual labels:  makefile
Android device motorola osprey
Device tree for 2015 Moto G (osprey)
Stars: ✭ 11 (-8.33%)
Mutual labels:  makefile
Moosefs Freebsd Ports
Official FreeBSD Ports for MooseFS 3.0 (and MooseFS 2.0). If you're looking for MooseFS 2.0 ports, check the 2.0.x branch.
Stars: ✭ 10 (-16.67%)
Mutual labels:  makefile
Mmc Password Utils
User layer support for kernel MMC Password Lock/Unlock feature
Stars: ✭ 10 (-16.67%)
Mutual labels:  makefile
Buildroot Rs97
Please don't use this anymore, it's old.
Stars: ✭ 11 (-8.33%)
Mutual labels:  makefile
Alpine Nginx
Docker config for a very small nginx container
Stars: ✭ 10 (-16.67%)
Mutual labels:  makefile
Toolchain
C/C++ toolchain for MiniOS
Stars: ✭ 11 (-8.33%)
Mutual labels:  makefile
Android device samsung herolte
Stars: ✭ 10 (-16.67%)
Mutual labels:  makefile
Mxe
MXE (M cross environment)
Stars: ✭ 858 (+7050%)
Mutual labels:  makefile
Docker Unifi Armhf
UniFi 5 Controller for Raspberry Pi
Stars: ✭ 12 (+0%)
Mutual labels:  makefile
Pve Qemu Kvm
QEMU/KVM Emulator
Stars: ✭ 11 (-8.33%)
Mutual labels:  makefile
Variantbam
Filtering and profiling of next-generational sequencing data using region-specific rules
Stars: ✭ 11 (-8.33%)
Mutual labels:  makefile

docker-node-opencv docker pulls image size

Docker image for NodeJS with OpenCV

Quickstart

  • In your shell:
docker pull mgcrea/node-opencv:2.4.12
docker run --name test_opencv -it mgcrea/node-opencv:2.4.12 /bin/bash
  • In your Dockerfile:
FROM mgcrea/node-opencv:2.4.12

Usage with docker-compose

# https://docs.docker.com/compose/yml/

version: '2'
services:
  backend:
    image: mgcrea/node-opencv:2.4.12
    container_name: test_opencv
    command: "node lib"
    # command: "/usr/local/bin/npm install --verbose"
    working_dir: /srv/node
    environment:
      - LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/opencv/build/lib
      - NODE_ENV=production
    expose:
      - "3000"
    volumes:
      - .:/srv/node
      - /usr/lib/beignet:/usr/lib/beignet:ro
    devices:
      - "/dev/video0:/dev/video0"
      - "/dev/dri/card0:/dev/dri/card0"
docker-compose up -d

Latest tagged releases

You can find the latest available tags at hub.docker.com

  • mgcrea/node-opencv:2
  • mgcrea/node-opencv:2.4
  • mgcrea/node-opencv:2.4.12
  • mgcrea/node-opencv:2.4.12.3

Links

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].