forked from LoungeFlyZ/eyes-in-the-sky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
40 lines (40 loc) · 968 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
version: '3.2'
services:
dump1090:
image: "loungefly/raspbian-dump1090"
build: ./dump1090
container_name: dump1090
privileged: true
ports:
- "8080:8080"
- "30003:30003"
- "30005:30005"
- "30104:30104"
environment:
- DUMP_HTTP_PORT=8080
- DUMP_SBS_PORT=30003
- DUMP_LAT=49.555
- DUMP_LON=-124.555
piaware:
image: "loungefly/raspbian-flightaware"
container_name: piaware
build: ./flightaware
volumes:
- ./flightaware/piaware.conf:/etc/piaware.conf
environment:
- PIAWARE_HOST=dump1090
- PIAWARE_PORT=30005
- PIAWARE_USER=username
- PIAWARE_PASSWORD=password
- PIAWARE_FEEDER_ID=
flightradar:
image: "loungefly/raspbian-flightradar24"
container_name: flightradar24
build: ./flightradar
ports:
- "8754:8754"
environment:
- DUMP1090_HOST=dump1090
- DUMP1090_PORT=30005
- FR24_KEY=
restart: always