Last active
January 5, 2024 00:16
-
-
Save PaulGoldschmidt/938fb5f91e04b25206715d8bf0ad9679 to your computer and use it in GitHub Desktop.
Docker Compose for Piaware and Fr24feeder using an USB RTL-SDR
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2.0' | |
services: | |
piaware: | |
image: mikenye/piaware:latest | |
tty: true | |
container_name: piaware | |
mac_address: de:ad:be:ef:13:37 | |
restart: always | |
devices: | |
- /dev/bus/usb:/dev/bus/usb | |
ports: | |
- 8080:8080 | |
- 30005:30005 | |
environment: | |
- TZ="Europe/Berlin" | |
- LAT=XX.XXXXXXXXXX | |
- LONG=YY.YYYYYYYYY | |
- FEEDER_ID=YOUR-FEEDER_ID | |
- ALLOW_MLAT=yes | |
volumes: | |
- ./piaware-cache:/var/cache/piaware | |
fr24feed: | |
image: mikenye/fr24feed:latest | |
tty: true | |
container_name: fr24feed | |
restart: always | |
ports: | |
- 8754:8754 | |
environment: | |
- BEASTHOST=piaware | |
- TZ="Europe/Berlin" | |
- FR24KEY=YOURFR24KEY | |
- MLAT=yes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment