-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker-compose.yml
52 lines (49 loc) · 1.93 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
44
45
46
47
48
49
50
51
52
version: '3.8'
services:
vrs:
image: ghcr.io/sdr-enthusiasts/vrs:latest
tty: true
container_name: vrs
restart: unless-stopped
ports:
- 8085:8080
environment:
- VRS_ADMIN_USERNAME=your_webadmin_user
- VRS_ADMIN_PASSWORD=your_webadmin_pass
- VRS_CULTURE=de-DE #see http://msdn.microsoft.com/en-us/goglobal/bb896001.aspx for a list of supported culture names. Not all translations may be available
- VRS_DB_UPDATE_BACKUP_UNCOMPRESSED=yes # default unset / compressed
- VRS_DB_UPDATE_POLICY_FULLAUTO=yes # default unset / no
- VRS_DB_UPDATE_WITH_VACUUM=yes # default unset / no
- 'VRS_ENHANCED_LAYERS_CONFIG={
/* Map Options */
"defaultMap" : 1, /* 1: OpenStreetMap, 2: OpenStreetMap Dark, 3: OpenTopoMap, 4: WaterColour, 5: CartoDark, 6: Terrain, 7: Satellite */
"layerMenuPosition" : "bottomleft", /* Valid positions: topleft, topright, bottomleft or bottomright */
/* Enable Layers */
"airspace" : 0,
"navAids" : 0,
"tfrUSA" : 0,
"seaMarkers" : 0,
"trainMap" : 0,
"clouds" : 0,
"rain" : 0,
"temps" : 0,
"wind" : 0,
"pressure" : 0,
"dayNight" : 0,
"civilAirfields" : 0,
"militaryAirfields" : 0,
"heliports" : 0,
"glidingSpots" : 0
}'
- VRS_ENHANCED_LAYERS_COUNTRY=UK # Currently available: UK,DE,USA1,SE
- VRS_ENHANCED_LAYERS_OPENAIP_APIKEY=yourapikey
- VRS_ENHANCED_LAYERS_OPENWX_APIKEY=yourapikey
- VRS_ENHANCED_MARKERS=normal # default unset
- VRS_SBSHOST=readsb # put IP or container name of data source here
- VRS_SBSPORT=30003
tmpfs:
- /tmp:rw,nosuid,nodev,noexec,relatime,size=128M
volumes:
- /opt/adsb/vrs:/root/.local/share/VirtualRadar
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro