-
Notifications
You must be signed in to change notification settings - Fork 15
/
docker-compose.yml
41 lines (36 loc) · 974 Bytes
/
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
version: '3'
services:
dump1090:
image: jraviles/dump1090
ports:
- 8080:8080/tcp
devices:
- /dev/bus/usb
restart: unless-stopped
piaware:
# wnagele/piaware image exists on DockerHub, but doesn't support arm/v7.
build:
context: 'https://github.com/wnagele/docker-piaware.git'
env_file: 'flightaware_credentials.txt'
environment:
- BEAST_PORT_30005_TCP_ADDR=dump1090
restart: unless-stopped
adsbexchange-feed:
environment:
- 'INPUT=decoder:30005'
links:
- 'dump1090:decoder'
image: marcelstoer/adsbexchange-docker-feed
restart: unless-stopped
adsbexchange-mlat:
env_file: 'adsbexchange_mlat_properties.txt'
environment:
- 'INPUT=decoder:30005'
- 'MLAT_RESULTS=decoder:30104'
links:
- 'dump1090:decoder'
image: marcelstoer/adsbexchange-docker-mlat
restart: unless-stopped
adsbhub:
image: jraviles/adsbhub
restart: unless-stopped