-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker-compose.yml
43 lines (41 loc) · 1.28 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
version: "3.8"
#
# If you are using the readsb container to pull your feed from, you may have add the following environment
# variables to the readsb section:
# - READSB_NET_BEAST_OUTPUT_PORT=30005
# - READSB_NET_RAW_OUTPUT_PORT=30002
#
# Also, it assumes that you have added the following parameters to your `.env` file., or made available in this docker-compose.yml file:
#
# RV_FEEDER_KEY=xxxx:123456789ABCDEF
# FEEDER_LAT=12.345678
# FEEDER_LONG=6.7890123
# FEEDER_ALT_M=12.3
#
# Once everything runs to your liking, feel free to set VERBOSE=OFF
#
services:
radarvirtuel:
image: ghcr.io/sdr-enthusiasts/docker-radarvirtuel
tty: true
container_name: radarvirtuel
hostname: radarvirtuel
restart: always
environment:
# Basic RadarVirtuel params:
- FEEDER_KEY=${RV_FEEDER_KEY}
- SOURCE_HOST=${HOSTNAME}:30002
- RV_SERVER=mg2.adsbnetwork.com:50050
# MLAT related params
- ENABLE_MLAT=true
- MLAT_HOST=${HOSTNAME}:30005
- MLAT_SERVER=mlat.adsbnetwork.com:50000
- LAT=${FEEDER_LAT}
- LON=${FEEDER_LONG}
- ALT=${FEEDER_ALT_M}m
- VERBOSE=ON
tmpfs:
- /tmp:rw,nosuid,nodev,noexec,relatime,size=128M
volumes:
- "/etc/localtime:/etc/localtime:ro"
- "/etc/timezone:/etc/timezone:ro"