forked from IQTLabs/SkyScan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
51 lines (47 loc) · 1.04 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
49
50
51
version: '3.7'
services:
funhouse:
build: ./ADS-B-funhouse
entrypoint: "./flighttracker.py -H piaware -m mqtt -l ${LAT} -L ${LONG} --prox SkyScan"
volumes:
- ./data:/app/data
depends_on:
- mqtt
pan-tilt-pi:
build: ./pan-tilt-pi
entrypoint: "./camera.py -m mqtt -t SkyScan"
volumes:
- /opt/vc:/opt/vc
- ./capture:/app/capture
devices:
- /dev/i2c-1:/dev/i2c-1
- "/dev/vchiq:/dev/vchiq"
environment:
- LD_LIBRARY_PATH=/opt/vc/lib
privileged: true
depends_on:
- mqtt
piaware:
image: mikenye/piaware:latest
tty: true
container_name: piaware
restart: always
devices:
- /dev/bus/usb:/dev/bus/usb
ports:
- 8080:80
- 30003:30003
- 30005:30005
environment:
- TZ=${TZ}
- LAT=${LAT}
- LONG=${LONG}
- FEEDER_ID=${FEEDER_ID}
- RECEIVER_TYPE=rtlsdr
- DUMP1090_DEVICE=1
mqtt:
build: ./mqtt
ports:
- "9001:9001"
- "1883:1883"
restart: unless-stopped