-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
36 lines (35 loc) · 870 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
36 lines (35 loc) · 870 Bytes
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
version: '3.4'
services:
lorawannodesimulator_1:
image: lorawannodesimulator
build:
context: .
dockerfile: ./Dockerfile
environment:
NODE_ENV: production
GATEWAY_START_EUI: 1
GATEWAY_END_EUI: 5
END_NODE_START_DEVADDR: 8000
END_NODE_END_DEVADDR: 8010
lorawannodesimulator_2:
image: lorawannodesimulator
build:
context: .
dockerfile: ./Dockerfile
environment:
NODE_ENV: production
GATEWAY_START_EUI: 1
GATEWAY_END_EUID: 5
END_NODE_START_DEVADDR: 8101
END_NODE_END_DEVADDR: 8110
lorawannodesimulator_3:
image: lorawannodesimulator
build:
context: .
dockerfile: ./Dockerfile
environment:
NODE_ENV: production
GATEWAY_START_EUI: 1
GATEWAY_END_EUI: 5
END_NODE_START_DEVADDR: 8400
END_NODE_END_DEVADDR: 8430