forked from jeanralphaviles/dump1090-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
48 lines (42 loc) · 1.13 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
version: '3'
services:
dump1090:
image: ${DUMP1090_DOCKER_REPO}
ports:
- 8080:8080/tcp
devices:
- /dev/bus/usb
restart: unless-stopped
build:
context: .
dockerfile: Dockerfile
args:
DUMP1090_DOCKER_REPO: ${DUMP1090_DOCKER_REPO}
DUMP1090_FA_GIT_TAG: ${DUMP1090_FA_GIT_TAG}
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