Skip to content

Instantly share code, notes, and snippets.

@PaulGoldschmidt
Last active January 5, 2024 00:16
Show Gist options
  • Save PaulGoldschmidt/938fb5f91e04b25206715d8bf0ad9679 to your computer and use it in GitHub Desktop.
Save PaulGoldschmidt/938fb5f91e04b25206715d8bf0ad9679 to your computer and use it in GitHub Desktop.
Docker Compose for Piaware and Fr24feeder using an USB RTL-SDR
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