Everything posted by ShoGinn
-
[Support] FoxxMD - shoginn-flightaware
Thanks! I have changed for CI/CD for my repos to now include both latest and the commit as part of the docker hub tags.. I did this only because having just latest was bad practice if something went screwy
-
[Support] FoxxMD - fr24feed-piaware
I recommend you check out VRS and it provides a much cooler interface to output to the world https://github.com/ShoGinn/virtualradarserver-docker https://hub.docker.com/r/shoginn/vrs -- its homepage http://www.virtualradarserver.co.uk/
-
[Support] FoxxMD - fr24feed-piaware
@PSYCHOPATHiO its an unfortunate addiction
-
[Support] FoxxMD - fr24feed-piaware
Not sure the interest in this as well.. but I have a Virtual Radar Server docker that is pretty sweet as well.. its amd64 only (which works great for Unraid!) https://hub.docker.com/r/shoginn/vrs If you want to see what its about http://www.virtualradarserver.co.uk
-
[Support] FoxxMD - fr24feed-piaware
again @mAYH3M I don't see the benefit to adding airspy_adsb to any one of the 7 containers I posted. dump1090 does the same thing.
-
[Support] FoxxMD - fr24feed-piaware
I say take the wheel ;) you already started this ADSB train.. let me know how I can support otherwise.
-
[Support] FoxxMD - fr24feed-piaware
@mAYH3M im confused by your request, air spy isn't even an active component in this container. Are you asking for air spy to be the replacement for dump1090?
-
[Support] FoxxMD - fr24feed-piaware
Just an update, after hours of work to try and get my ci/cd platform to do multi-arch builds I was able to break it all up. Next step is to make a template for each container. If you are curious and want to mess around with it. Its 7 components with dump1090 being of course the rtlsdr component. It is using the latest and greatest versions of all. https://github.com/ShoGinn/dump1090 https://github.com/ShoGinn/adsbexchange-mlat https://github.com/ShoGinn/adsbhub https://github.com/ShoGinn/flightaware https://github.com/ShoGinn/flightradar24 https://github.com/ShoGinn/openskynetwork https://github.com/ShoGinn/planefinder
-
[Support] FoxxMD - fr24feed-piaware
The driver is not necessary since it references the /dev/bus/usb directly. Having the blacklist in the docker file is also a bit unnecessary. I am in the process (when I get time) to rewrite my raspberry pi version into multi-arch. https://github.com/ShoGinn/docker-ads-b So many ways to feed ADSB
-
[SOLVED] Need help with .bash_profile
@Delarius explained the option that I used. His is actually cleaner than mine I took this opportunity to clean mine up. edit the file: /boot/config/go Append the following: bash_profile () { if [ -f /root/.bash_profile ]; then cat /boot/config/mybashprofile >> /root/.bash_profile fi } # Update Bash Profile bash_profile Create your: /boot/config/mybashprofile
-
Docker Gui Issue
I was attempting to change the hostname of the container and instead of --hostname used --name When I put --name in the extra arguments and updated the container, the container could not be edited. The option was removed from the container. Deleting and recreating the container was the fix.