forked from blebox/blebox-virtual-devices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
74 lines (72 loc) · 1.58 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
version: '3.4'
x-common:
&common
image: erikap/ruby-sinatra
volumes:
- .:/usr/src/app
networks:
blebox_sensors:
services:
airSensor:
<< : *common
environment:
MAIN_APP_FILE: products/airSensor.rb
NAME: "My air 1"
dimmerBox:
<< : *common
environment:
MAIN_APP_FILE: products/dimmerBox.rb
NAME: "My dimmer 1"
tempSensor:
<< : *common
environment:
MAIN_APP_FILE: products/tempSensor.rb
NAME: "My temp 1"
wLightBox:
<< : *common
environment:
MAIN_APP_FILE: products/wLightBox.rb
NAME: "My light 1"
saunaBox:
<< : *common
environment:
MAIN_APP_FILE: products/saunaBox.rb
NAME: "My sauna 1"
shutterBox:
<< : *common
environment:
MAIN_APP_FILE: products/shutterBox.rb
NAME: "My shutter1"
gateBox:
<< : *common
environment:
MAIN_APP_FILE: products/gateBox.rb
NAME: "My gatebox 1"
gateController:
<< : *common
environment:
MAIN_APP_FILE: products/gateController.rb
NAME: "My gateController 1"
wLightBoxS:
<< : *common
environment:
MAIN_APP_FILE: products/wLightBoxS.rb
NAME: "My lightBoxS 1"
switchBox0: # old version
<< : *common
environment:
MAIN_APP_FILE: products/switchBox0.rb
NAME: "My switchBox0 1"
switchBox:
<< : *common
environment:
MAIN_APP_FILE: products/switchBox.rb
NAME: "My switchBox 1"
switchBoxD:
<< : *common
environment:
MAIN_APP_FILE: products/switchBoxD.rb
NAME: "My switchBoxD 1"
networks:
blebox_sensors:
external: true