diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2019-11-17 01:58:33 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2019-11-17 02:37:13 +0300 |
commit | 736a1fb9fca4ba11612e2bd38a290f95ae8002b6 (patch) | |
tree | 48c0a7ac6d7c299098de4a9f17660d9f4b830929 /README.md | |
download | fr24feed-736a1fb9fca4ba11612e2bd38a290f95ae8002b6.tar.gz fr24feed-736a1fb9fca4ba11612e2bd38a290f95ae8002b6.zip |
initial commit
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..2059142 --- /dev/null +++ b/README.md @@ -0,0 +1,47 @@ +fr24feed in Docker +================== + +I'm tired of keeping track of all the hacks I needed to introduce to my Arch +Linux installation on my Raspberry Pi to get fr24feed running, so here's a +Docker configuration. + +Usage +----- + +* Type in your sharing key in fr24feed/fr24feed.ini. + + fr24key="0123456789abcdef" + +* Optionally, edit dump1090/config.js to set the correct coordinates of the +receiver. + + DefaultCenterLat = 66.5; + DefaultCenterLon = 25.19; + + SiteShow = true; + SiteLat = 66.5; + SiteLon = 25.19; + SiteName = "My receiver"; + +* Optionally, edit dump1090/supervisord.conf to set the correct coordinates of +the receiver in dump1090-fa's arguments (`--lat` and `--lon`). + + command=/usr/bin/dump1090-fa ... --lat 66.5 --lon 25.19 ... + +Start the containers using + + docker-compose up -d + +You can now access the interactive map at http://0.0.0.0:8080/dump1090-fa/ and +the fr24feed web interface at http://0.0.0.0:8754/. + +Stop the containers using + + docker-compose down -v + +Development +----------- + +Build the images using + + docker-compose build --force-rm |