-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
55 lines (54 loc) · 2.3 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
53
54
55
version: '3.8'
services:
urfd:
image: mfiscus/urfd:latest
container_name: urfd
hostname: urfd_container
environment:
# DO NOT enable the "calling home" feature unless you are sure
# that you will not be infringing on an existing XLX or XRF
# reflector with the same callsign suffix. If you don't understand
# what this means, don't set CALLHOME: 'true'
CALLHOME: 'false'
# Define your FCC callsign
CALLSIGN: 'your_callsign'
# Define your email address which will appear on dashboard
EMAIL: '[email protected]'
# Define your fully-qualified domain name
URL: 'your_domain.com'
# Setting this to true will ensure 'https' is used in URL
SSL: 'true'
# Port that dashboard runs on. If SSL is enabled, then this is used for the backend proxy service
PORT: '8080'
# Where ? is A-Z or 0-9. NO EXCEPTIONS!
URFNUM: 'URF???'
# Get an ID here -> https://register.ysfreflector.de
YSFID: '12345'
# Add your ID to the file here -> https://github.com/g4klx/NXDNClients/blob/master/NXDNGateway/NXDNHosts.txt
NXDNID: '12345'
# Add your ID to the file here -> https://github.com/g4klx/P25Clients/blob/master/P25Gateway/P25Hosts.txt
P25ID: '12345'
# Set to 'true' if you intend to interlink with Brandmeister (TGIF is better)
BRANDMEISTER: 'false'
# Set to 'true' if you want to enable Allstar node
ALLSTAR: 'false'
# Change to your country
COUNTRY: 'United States'
# Decribe your reflector. used in various place on dashboard and YSF registry
DESCRIPTION: 'My urfd-docker reflector'
# MODULES: ABCDEFGHIJKLMNOPQRSTUVWXYZ
MODULES: 'ABCD'
# Name your modules however you like (container only supports naming first 4)
MODULEA: 'Main'
MODULEB: 'D-Star'
MODULEC: 'DMR'
MODULED: 'YSF'
# Set your timezone here if you want dashboard times to apear in local time
TZ: 'UTC'
# Privilged MUST be enabled if you are using AMBE transcoding usb hardware
privileged: true
volumes:
# Local directory where state and config files (including callinghome.php and urfd.ini)
# will be saved. Change /opt/urfd to any location you prefer on your host machine
- /opt/urfd:/config
restart: unless-stopped