-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
64 lines (50 loc) · 1.39 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
services:
#mosquitto:
# image: eclipse-mosquitto:1.6
# container_name: mosquitto
# restart: unless-stopped
# ports:
# - 1883:1883
udp-packet-forwarder:
image: rakwireless/udp-packet-forwarder:latest
container_name: udp-packet-forwarder
restart: unless-stopped
privileged: true
environment:
MODEL: RAK5146
SERVER_HOST: lorawan-packet-sniffer
SERVER_PORT: 1700
lorawan-packet-sniffer:
#build:
# context: .
# dockerfile: Dockerfile
image: xoseperez/lorawan-packet-sniffer:latest
container_name: lorawan-packet-sniffer
restart: unless-stopped
privileged: true
ports:
- 1700:1700
- 8888:8888
volumes:
- ./data:/app/data
# Either mount the configuration file
# - ./config.yml:/app/config.yml
# Or use environment variables to configure the service
environment:
LOGGING_LEVEL: 10
GENERAL_BUFFER: 500
UDP_PORT: 1700
MQTT_ENABLED: False
MQTT_SERVER: mosquitto
MQTT_PORT: 1883
MQTT_USERNAME:
MQTT_PASSWORD:
MQTT_TOPIC: gts/message
FILE_ENABLED: False
FILE_UPLINKS: /app/data/uplinks.log
FILE_JOINREQS: /app/data/joinreqs.log
WEB_ENABLED: True
WEB_PORT: 8888
CLIENT_BUTTONS_MODE: True
CLIENT_BUTTONS_SCREEN: False
CLIENT_BUTTONS_FULLSCREEN: True