⚠ This is still experimental.
SDRangel is is an Open Source Qt5 / OpenGL 3.0+ SDR and signal analyzer frontend to various hardware. It also supports remote and terminal (no GUI) operation and can be controlled or control other pieces of software with a REST API.
SDRangelCli is a browser based client application to control SDRangel in remote mode using its REST API.
Eventually Docker compose could be used to fire up the entire SDRangel and SDRangelCli ecosystem.
Check the discussion group here
☞ If you have already installed Docker and are familiar with it you can skip directly to the "Docker images" section at the bottom of the document
This is of course the first step. Please check the Docker related page and follow instructions for your distribution.
You can of course install Docker on Windows in two ways:
- Install Docker Desktop For Windows with Hyper-V activated
- Install with Oracle Virtualbox (do not activate Hyper-V)
It turns out that running Docker Desktop For Windows is not an option because you could display something on screen but there are too many issues with X-Server connection, sound and USB.
Thus you will have to run inside a Linux VM in Virtualbox. One important point is to install Virtualbox running the installation program as an administrator else you will not be able to attach USB devices to the virtual machine.
Then things will be the same as when running Docker in a Linux box and thus all the following applies.
⚠ Please note that this does not work as well as with a Linux native host or may not work at all.
This step is important. You must not run the various scripts with sudo
and therefore run docker commands with sudo
.
In order to run docker commands as a normal user you will need to add your user to the docker
group (using sudo once): sudo usermod -a -G docker $USER
. Then you have to log out and back in to make it effective.
Type groups
to verify docker
is in the list of groups your user belongs to.
Although a set of shell scripts are there to help you build images and run containers it is better to have some understanding on how Docker works and know its most used commands. There are tons of tutorials on the net to get familiar with Docker. Please take time to play with Docker a little bit so that you are proficient enough to know how to build and run images, start containers, etc... Be sure that this is not time wasted just to run this project. Docker is a top notch technology (although based on ancient roots) widely used in the computer industry and at the heart of many IT ecosystems.
Optionnally you can install a GUI tool to manage and monitor Docker images and containers.
Kitematic is a GUI application to monitor and configure containers live. You can check the home page here. Although flagged as "legacy" in Docekr documentation it still alive on Github.
You can check the Github repository where a .deb package is available. Arch users will find a package in the AUR.
Kitematic may not be completely functional. Then Portainer can be a good alternative or complement. Moreover Portainer has a richer functionality like showing the subnet to which a container belongs.
Portainer is a web application that is itself started as a container.
For data persistency you will need to create a volume once with:
docker volume create portainer_data
Then you will start it with this Docker command:
docker run -d -p 9000:9000 --name portainer --privileged -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer --no-auth -H unix:///var/run/docker.sock
Then you simply open a browser page at: http://localhost:9000. You can use a different port on the host by changing the port mapping in the Docker run command.
Portainer documentation here
Visual Studio Code has a plugin from Microsoft (peterjausovec.vscode-docker) that in addition to Dockerfile syntax highlighting facilitates logging into a container and showing the logs. Click on the whale icon in the left toolbar of VS Code to access these functions.
The GUI tools can access the log (container stdout and stderr) live but in many cases it is truncated and the start of the log is unavailable. To get a full log you will have to use the Docker CLI commands.
First get a list of containers and spot the container for which you would like to get the log:
docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
8075e65626b1 sdrangelcli:latest "http-server" 35 minutes ago Up 35 minutes 0.0.0.0:8001->8080/tcp sdrangelcli_1
48ebe711df3e portainer/portainer "/portainer --no-auth" 2 days ago Up 31 minutes 0.0.0.0:9000->9000/tcp portainer
2e2b2f97dae9 sdrangel/nvidia:v4.10.4 "/start.sh" 2 days ago Up 8 minutes 0.0.0.0:8091->8091/tcp, 0.0.0.0:9094->9094/udp, 0.0.0.0:50022->22/tcp sdrangel_1
Let's say I would like to get the log of the SDRangel instance. It is the container running the sdrangel/nvidia:v4.10.4
image and has the ID 2e2b2f97dae9
. I see that it has been running since 8 minutes. I will use the docker log
command that has a --since
option to tell since when you want to get the log. I can give it any arbitrary value larger than 8 minutes to get the full log:
docker logs --since 10m 2e2b2f97dae9 > ~/sdrangel.log
Or I can pipe it directly into other commands like less
to browse through it or grep
to look for something in particular:
docker logs --since 10m 2e2b2f97dae9 | grep -i perseus 2019-03-14 02:33:46.113 (D) PluginManager::loadPluginsDir: fileName: libinputperseus.so 2019-03-14 02:33:46.113 (I) PluginManager::loadPluginsDir: loaded plugin libinputperseus.so 2019-03-14 02:33:46.117 (D) PluginManager::registerSampleSource Perseus Input with source name sdrangel.samplesource.perseus 2019-03-14 02:33:46.666 (I) DevicePerseusScan::scan: device #0 firmware downloaded 2019-03-14 02:33:46.666 (D) PerseusPlugin::enumSampleSources: enumerated Perseus device #0
To get the complete map of your docker space you issue the following command: docker system df -v
.
At some point you will notice that your docker space has inflated dramatically and that eventually you might run out of space on the volume where the docker folder is hosted. There are two things you can do to do some cleanup.
In the Images space usage:
section on the top you will notice that some images have <none>
for the REPOSITORY
and TAG
references:
docker system df -v
Images space usage:
REPOSITORY TAG IMAGE ID CREATED SIZE SHARED SIZE UNIQUE SIZE CONTAINERS
sdrangel/nvidia latest 75f6bb9db0dc 28 hours ago 2.607GB 1.958GB 649.3MB 1
<none> <none> 95a6fee5e547 2 days ago 2.607GB 1.958GB 648.4MB 0
sdrangelcli v1.1.4 b7bcc59c8866 2 days ago 2.607GB 1.951GB 655.8MB 0
In Docker terms these are called "dangling images". If an image gets superseded by an image with the same tag by a more recent build this image is still kept in the images repository but its references are set to <none>
and they cannot be used directly specifying a tag. A convenient command to get rid of them is:
docker rmi $(docker images -q --filter "dangling=true")
Deleted: sha256:95a6fee5e547891b8b3d739b416d46ed59378b019e15b191bb55ba4a99d4ba86
If a dangling image is still in use by a container (its counter in the CONTAINERS
column is not 0) then it cannot be deleted. You then have to wait until the container is exited and removed. Some disregarded containers may be left in an exit state. You can purge exited containers with the command
docker rm $(docker ps -a -q)
Error response from daemon: You cannot remove a running container babf0aab863a8a4b23e362dac9bb3aed2fa6a2d782198e57a1e1001f635f1a62. Stop the container before attempting removal or force remove
As you can see this command will not delete containers that are running.
The BuildKit feature of docker build is used in the various scripts presented here. It is nice because it preserves intermediate images but it keeps the build cache inflating. BuildKit comes with a garbage collector but it is not enabled by default. To enable it you have to edit /etc/docker/daemon.json
so take your favorite editor (vim
) and open the file with sudo: sudo vim /etc/docker/daemon.json
. This is a JSON file and you will have to add this structure at the "root" of the JSON document i.e. at the level of the outermost brackets like this
{
"you may have something else here": {...},
"builder": {
"gc": {
"enabled": true,
"policy": [
{"keepStorage": "5GB", "all": true}
]
}
}
}
The keepStorage
key gives a limit to the build cache. This is a target and actual space will generally be slightly higher and may occasionally be significantly higher but each time you restart Docker the build cache space will be reduced to around this value.
You have to restart Docker for this to take effect:
- with
systemctl
do:sudo systemctl restart docker
- with
service
do:sudo service docker restart
The files contained in the fftwisdom
directory are used to build an image to run the fftw-wisdom
command in a container. This ensures the same environment as in the SDRangel images is used to produce the FFTW wisdom file that can be used with SDRangel. Please check the readme inside this folder for further information.
The files contained in the sdrangel
directory are used to build and run SDRangel images. Please check the readme inside this folder for further information
The files contained in the sdrangelcli
directory are used to build and run SDRangelCli images. Please check the readme inside this folder for further information
The files contained in the sdrangelspectrum
directory are used to build and run SDRangelSpectrum images. Please check the readme inside this folder for further information
Due to possible delay in the audio when running SDRangel in a container WSJT-X may fail to decode.
The files contained in the wsjtx
directory (see readme) are used to build and run an image where WSJT-X and the libfaketime
library are compiled. libfaketime
is used to change system time as WSJT-X sees it.
Note that this is only for your convenience. It is also possible to use libfaketime
with WSJT-X in the host without impacting the system clock.
The files contained in the compose
directory are used to set up and run Docker Compose stacks. Please check the readme inside this folder for further information