Skip to content

A Docker container to run the Chaos Computer Club München gr-iridium and iridium-toolkit software to decode and parse ACARS over Iridium.

License

Notifications You must be signed in to change notification settings

rpatel3001/docker-gr-iridium-toolkit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

docker-gr-iridium-toolkit

GitHub Workflow Status Discord

A Docker image to use the gr-iridium and iridium-toolkit software from the Chaos Computer Club München to parse ACARS messages on the Iridium network.

Under active development, everything is subject to change without notice.


Docker Compose

services:
  irdm:
    container_name: irdm
    hostname: irdm
    image: ghcr.io/rpatel3001/docker-gr-iridium-toolkit
#    build: docker-gr-iridium-toolkit
    restart: always
    tty: true # actually needed, for iridium-parser.py
    ports:
      - 8888:8888 # for beam map
      - 8889:8889 # for mt map
    device_cgroup_rules:
      - 'c 189:* rwm'
    volumes:
      - /dev:/dev:rw
      - ./irdm.conf:/opt/irdm.conf:ro
    environment:
#      - ENABLE_MTPOS_MAP=true
#      - ENABLE_MTPOS_MAP_LOG=true
#      - DISABLE_EXTRACTOR=true
#      - LOG_EXTRACTOR_STATS=true
#      - LOG_MAP=true
#      - EXTRACTOR_ARGS= -D 8  # Valid values when running high sample rate are 1, 2, 4, 8 and 16
      - PARSER_ARGS= --harder --uw-ec # runs slower, remove uw-ec then harder if message rate is high
      - STATION_ID=XX-YYYY-IRDM
      - OUTPUT_SERVER=acarshub
      - OUTPUT_SERVER_PORT=5558

irdm.conf has details of your SDR device. Full details can be found here. An example for using an RTL-SDR with max gain and bias-tee enabled:

[osmosdr-source]
sample_rate=2500000
center_freq=1625600000

# Uncomment to use the RTL-SDR's Bias Tee if available
device_args='rtl=0,bias=1'

# Automatic bandwidth
bandwidth=0

# LNA gain
gain=49.6

About

A Docker container to run the Chaos Computer Club München gr-iridium and iridium-toolkit software to decode and parse ACARS over Iridium.

Resources

License

Stars

Watchers

Forks

Releases

No releases published