-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yaml
35 lines (33 loc) · 1.01 KB
/
docker-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
version: '3'
services:
dump1090:
restart: always
devices:
- /dev/bus/usb
container_name: dump1090
ports:
- '8080:8080'
image: 'jraviles/dump1090:latest'
adsbexchange-feed:
restart: always
environment:
- 'INPUT=decoder:30005'
links:
- 'dump1090:decoder'
container_name: adsbexchange-feed
image: 'marcelstoer/adsbexchange-feed:latest'
adsbexchange-mlat:
restart: always
environment:
- 'INPUT=decoder:30005'
- 'MLAT_RESULTS=decoder:30104'
# add the geo coordinates of your ADS-B reeiver
- RECEIVER_LATITUDE=**.*****
- RECEIVER_LONGITUDE=**.******
- RECEIVER_ALTITUDE=***
# identify your receiver with something unique
- RECEIVER_NAME=XXX***XXX
links:
- 'dump1090:decoder'
container_name: adsbexchange-mlat
image: 'marcelstoer/adsbexchange-mlat:latest'