0xAF / openwebrxplus-bg

OpenWebRX+ Customized Docker image for Bulgarians

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

openwebrxplus-bg

Docker image for OpenWebRX+ customized for use in Bulgaria. Added custom bookmarks and map features. The image is based on openwebrx-softmbe, hence includes codecserver-softmbe (mbelib), enabling DMR, D-Star, YSF, FreeDV, DRM, NXDN and other Digital modes.

This image has RTL-SDR device and profiles preconfigured. You will have to modify the General Settings in Admin Panel too.

Running the container

# crete volumes
docker volume create owrxp-settings
docker volume create owrxp-etc

# run container in background
docker run -d --name owrxp-bg \
    --device /dev/bus/usb \
    -p 8073:8073 \
    -v owrxp-settings:/var/lib/openwebrx \
    -v owrxp-etc:/etc/openwebrx \
    --restart unless-stopped \
    slechev/openwebrxplus-bg

You can use ENV variable to specify the cities from which the repeaters will be extracted and added to the map and bookmarks.

Add -e DUMP_REPS="Варна:Каварна:Слънчев Бряг:Провадия" to the docker run command above.

Admin user

Login with user admin and password admin. You will be forced to change the password after the first login.

Blacklisting device drivers on host

You should disable the kernel drivers for RTL, SDRPlay and HackRF devices on the host linux (where docker runs) before running OWRX+ and then reboot.

cat > /etc/modprobe.d/owrx-blacklist.conf << _EOF_
blacklist dvb_usb_rtl28xxu
blacklist sdr_msi3101
blacklist msi001
blacklist msi2500
blacklist hackrf
_EOF_

SDRPlay devices

If you have problems with SDRPlay devices when the container is ran for the first time try to restart the container. For more information see the official wiki and a possible long-term solution

More information on the official wiki

Docker Hub

Check the Docker Hub page for the image.

Github

Check the Source code for this image.

About

OpenWebRX+ Customized Docker image for Bulgarians

License:MIT License


Languages

Language:Perl 66.5%Language:Makefile 12.4%Language:Shell 11.2%Language:Dockerfile 9.9%