forked from rpatel3001/docker-gr-iridium-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-example.yaml.example
37 lines (37 loc) · 1.2 KB
/
docker-example.yaml.example
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
services:
irdm:
container_name: irdm
hostname: irdm
image: ghcr.io/jkrasuk/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
- ./logs:/opt/logs
environment:
- ENABLE_BEAM_MAP=true
# - ENABLE_MTPOS_MAP=true
# - ENABLE_MTPOS_MAP_LOG=true
# - DISABLE_EXTRACTOR=true
- LOG_EXTRACTOR_STATS=true
# - LOG_MAP=true
- EXTRACTOR_ARGS= -D 4 --multi-frame # Valid values when running high sample rate are 1, 2, 4, 8 and 16
- STATION_ID=XX-YYYY-IRDM
- LIVEMAP_TO_TBG=true
- TBG_SATS_PORT=ZZZZ
- AIRPORT_ICAO_CODE=YYYY
- ACARS_ADDITIONAL_OUTPUTS=udp:acarshub:5558,udp:thebaldgeek.net:NNNN
# - LOG_ACARS=true
# - PARSER_ARGS= --harder --uw-ec --stats # remove --uw-ec then --harder if CPU usage is too high. --stats is required until an upstream bug is fixed
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "5"