Skip to content
This repository was archived by the owner on Feb 24, 2021. It is now read-only.

Commit 8eb47b9

Browse files
fix: Add missing option for adding Device Camera (#345)
* fix: Add missing option for adding Device Camera closes #344 Signed-off-by: lenny <[email protected]>
1 parent f89162d commit 8eb47b9

File tree

4 files changed

+50
-1
lines changed

4 files changed

+50
-1
lines changed

compose-builder/.env

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ KUIPER_VERSION=1.0.0-alpine
3535
MOSQUITTO_VERSION=1.6.3
3636
APP_SERVICE_VERSION=master
3737
DEVICE_BACNET_VERSION=master
38+
DEVICE_CAMERA_VERSION=master
3839
DEVICE_GROVE_VERSION=master
3940
DEVICE_MODBUS_VERSION=master
4041
DEVICE_MQTT_VERSION=master

compose-builder/Makefile

+5-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
include .env
2020

2121
COMPOSE_FILES:=-f docker-compose-base.yml
22-
OPTIONS:=" arm64 no-secty mqtt dev ui ds-bacnet ds-grove ds-modbus ds-mqtt ds-random ds-rest ds-snmp ds-virtual" # Must have spaces around words for `filter-out` function to work properly
22+
OPTIONS:=" arm64 no-secty mqtt dev ui ds-bacnet ds-camera ds-grove ds-modbus ds-mqtt ds-random ds-rest ds-snmp ds-virtual" # Must have spaces around words for `filter-out` function to work properly
2323

2424
ARGS:=$(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))
2525
$(eval $(ARGS):;@:)
@@ -39,6 +39,9 @@ endif
3939
ifeq (ds-bacnet, $(filter ds-bacnet,$(ARGS)))
4040
COMPOSE_FILES:=$(COMPOSE_FILES) -f add-device-bacnet.yml
4141
endif
42+
ifeq (ds-camera, $(filter ds-camera,$(ARGS)))
43+
COMPOSE_FILES:=$(COMPOSE_FILES) -f add-device-camera.yml
44+
endif
4245
ifeq (ds-grove, $(filter ds-grove,$(ARGS)))
4346
DS_GROVE:=true
4447
COMPOSE_FILES:=$(COMPOSE_FILES) -f add-device-grove.yml
@@ -154,6 +157,7 @@ down: ui-down
154157
docker-compose -p edgex \
155158
-f docker-compose-base.yml \
156159
-f add-device-bacnet.yml \
160+
-f add-device-camera.yml \
157161
-f add-device-grove.yml \
158162
-f add-device-modbus.yml \
159163
-f add-device-mqtt.yml \

compose-builder/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ This folder contains the following compose files:
3232
Security **extending** compose file. Adds the additional security services and configuration of services so that all the services are running in the secure configuration.
3333
- **add-device-bacnet.yml**
3434
Device Service **extending** compose file, which adds the **Device Bacnet** service.
35+
- **add-device-camera.yml**
36+
Device Service **extending** compose file, which adds the **Device Camera** service.
3537
- **add-device-grove.yml**
3638
Device Service **extending** compose file, which adds the **Device Grove** service.
3739
- **add-device-modbus.yml**
@@ -96,6 +98,7 @@ Options:
9698
dev: Generates compose file using local dev built images from edgex-go repo's
9799
'make docker' which creates docker images tagged with '0.0.0-dev'
98100
ds-bacnet: Generates compose file with device-bacnet included
101+
ds-camera: Generates compose file with device-camera included
99102
ds-grove: Generates compose file with device-grove included (valid only with arm64 option)
100103
ds-modbus: Generates compose file with device-modbus included
101104
ds-mqtt: Generates compose file with device-mqtt included
@@ -117,6 +120,7 @@ Options:
117120
'make docker' which creates docker images tagged with '0.0.0-dev'
118121
ds-modbus: Runs with device-modbus included
119122
ds-bacnet: Runs with device-bacnet included
123+
ds-camera: Runs with device-camera included
120124
ds-grove: Runs with device-grove included (valid only with arm64 option)
121125
ds-mqtt: Runs with device-mqtt included
122126
ds-random: Runs with device-random included
@@ -135,6 +139,7 @@ Options:
135139
no-secty: Pulls images for Non-Secure Mode, otherwise pull images for Secure Mode
136140
arm64: Pulls ARM64 version of images
137141
ds-bacnet: Pull includes device-bacnet
142+
ds-camera: Pull includes device-camera
138143
ds-grove: Pull includes device-grove (valid only with arm64 option)
139144
ds-modbus: Pull includes device-modbus
140145
ds-mqtt: Pull includes device-mqtt
@@ -157,6 +162,7 @@ Options:
157162
'make docker' which creates docker images tagged with '0.0.0-dev'
158163
ds-modbus: Generates compose file with device-modbus included
159164
ds-bacnet: Generates compose file with device-bacnet included
165+
ds-camera: Generates compose file with device-camera included
160166
ds-grove: Generates compose file with device-grove included (valid only with arm64 option)
161167
ds-mqtt: Generates compose file with device-mqtt included
162168
ds-random: Generates compose file with device-random included

compose-builder/add-device-camera.yml

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# /*******************************************************************************
2+
# * Copyright 2020 Intel Corporation.
3+
# *
4+
# * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5+
# * in compliance with the License. You may obtain a copy of the License at
6+
# *
7+
# * http://www.apache.org/licenses/LICENSE-2.0
8+
# *
9+
# * Unless required by applicable law or agreed to in writing, software distributed under the License
10+
# * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11+
# * or implied. See the License for the specific language governing permissions and limitations under
12+
# * the License.
13+
# *
14+
# * @author: Leonard Goodell
15+
# * EdgeX Foundry, Hanoi, version "master"
16+
# * added: October, 2020
17+
# *******************************************************************************/
18+
19+
version: '3.7'
20+
21+
services:
22+
device-rest:
23+
image: ${REPOSITORY}/docker-device-camera-go${ARCH}:${DEVICE_CAMERA_VERSION}
24+
ports:
25+
- "127.0.0.1:49986:49986"
26+
container_name: edgex-device-camera
27+
hostname: edgex-device-camera
28+
read_only: true
29+
networks:
30+
- edgex-network
31+
env_file:
32+
- common.env
33+
environment:
34+
SERVICE_HOST: edgex-device-camera
35+
depends_on:
36+
- consul
37+
- data
38+
- metadata

0 commit comments

Comments
 (0)