This repository has been archived by the owner on Jul 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
compose.yaml
103 lines (98 loc) · 2.47 KB
/
compose.yaml
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
services:
nodered:
build: ./nodered
networks: [ "nodered" ]
ports:
- "1880:1880"
volumes:
- type: bind
source: ./
target: /node-red-contrib-openhab3
- type: volume
source: nodered-data
target: /data
openhab32:
build: openhab3.2/
networks: [ "nodered" ]
ports:
- "8081:8080"
volumes:
- type: bind
source: ./test/openhab/conf/items
target: /openhab/conf/items
- type: bind
source: ./test/openhab/conf/persistence
target: /openhab/conf/persistence
- type: bind
source: ./test/openhab/conf/services
target: /openhab/conf/services
- type: volume
source: openhab32-userdata
target: /openhab/userdata
- type: volume
source: openhab32-addons
target: /openhab/addons
environment:
- CRYPTO_POLICY=unlimited
- USER_ID=9001
- GROUP_ID=9001
openhab33-oauth2:
build: openhab3.3/
networks: [ "nodered" ]
ports:
- "8082:8080"
volumes:
- type: bind
source: ./test/openhab/conf/items
target: /openhab/conf/items
- type: bind
source: ./test/openhab/conf/persistence
target: /openhab/conf/persistence
- type: bind
source: ./test/openhab/conf/services
target: /openhab/conf/services
- type: volume
source: openhab33-oauth2-userdata
target: /openhab/userdata
- type: volume
source: openhab33-oauth2-addons
target: /openhab/addons
environment:
- CRYPTO_POLICY=unlimited
- USER_ID=9001
- GROUP_ID=9001
openhab33:
build: openhab3.3/
networks: [ "nodered" ]
ports:
- "8083:8080"
volumes:
- type: bind
source: ./test/openhab/conf/items
target: /openhab/conf/items
- type: bind
source: ./test/openhab/conf/persistence
target: /openhab/conf/persistence
- type: bind
source: ./test/openhab/conf/services
target: /openhab/conf/services
- type: volume
source: openhab33-userdata
target: /openhab/userdata
- type: volume
source: openhab33-addons
target: /openhab/addons
environment:
- CRYPTO_POLICY=unlimited
- USER_ID=9001
- GROUP_ID=9001
volumes:
nodered-data:
openhab32-addons:
openhab32-userdata:
openhab33-addons:
openhab33-userdata:
openhab33-oauth2-addons:
openhab33-oauth2-userdata:
networks:
nodered: