This repository was archived by the owner on May 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.readsb.yml
More file actions
79 lines (74 loc) · 1.54 KB
/
docker-compose.readsb.yml
File metadata and controls
79 lines (74 loc) · 1.54 KB
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
version: '3'
services:
readsb:
# build: readsb
image: flighttracker/readsb:latest
restart: unless-stopped
devices:
- /dev/bus/usb:/dev/bus/usb
environment:
- DEVICE_TYPE=rtlsdr
- DEVICE=
- GAIN=-10
- PPM=0
- NET_RO_SIZE=1200
- NET_RO_INTERVAL=0.1
- NET_RO_PORT=30002
- NET_SBS_PORT=30003
- NET_BO_PORT=30005
- UUID=
# optional
readsb-web:
# build: readsb-web
image: flighttracker/readsb-web:latest
restart: unless-stopped
depends_on:
- readsb
ports:
- "80:80"
environment:
- CENTER_LAT=
- CENTER_LNG=
- CENTER_RADIUS=
# optional
fr24feed:
# build: fr24feed
image: flighttracker/fr24feed:latest
restart: unless-stopped
depends_on:
- readsb
ports:
- "8754:8754"
environment:
- SHARING_KEY=
- DUMP1090_HOST=readsb:30002
# optional
pfclient:
# build: pfclient
image: flighttracker/pfclient:latest
restart: unless-stopped
depends_on:
- readsb
ports:
- "30053:30053"
environment:
- SHARING_KEY=
- DUMP1090_HOST=readsb
- DUMP1090_PORT=30002
- LAT=
- LON=
# # optional
# adsb2influx:
# # build: adsb2influx
# image: flighttracker/adsb2influx:latest
# restart: unless-stopped
# depends_on:
# - readsb
# environment:
# - DUMP1090_HOST=readsb
# - DUMP1090_PORT=30003
# - INFLUX_URL=
# - INFLUX_TOKEN=
# - INFLUX_ORG=
# - INFLUX_BUCKET=adsb
# - SEND_INTERVAL=60