Git Product home page Git Product logo

Comments (1)

CondormanFr avatar CondormanFr commented on June 7, 2024

I solved with making theses changes :

FROM marcelmaatkamp/docker-gnuradio-dump1090

# To sign up for the first time and acquire a flightradar24 key:  
#  $ docker run -ti marcelmaatkamp/flightradar24-feeder --signup 

# After that start the feeder with the key:  
#  $ docker run -d \ 
#    --name flightradar_feeder \
#    --restart=always \
#    --privileged \
#    -p 8080:8080 \
#    -p 8754:8754 \
#    -p 30001:30001 \
#    -p 30002:30002 \
#    -p 30003:30003 \
#    -p 30334:30334 \
#    marcelmaatkamp/flightradar24-feeder \
#      --fr24key=<flightradar24 signup key>

RUN \
 apt-get update &&\
 apt-get install --reinstall ca-certificates &&\
 add-apt-repository ppa:linrunner/tlp &&\
 add-apt-repository ppa:ubuntu-toolchain-r/test &&\
 apt-get update &&\ 
 apt-get install -y wget gcc-4.9 g++-4.9 &&\
 rm -rf /var/lib/apt/lists/*

ENV FLIGHTRADAR_VERSION 1.0.34-0
RUN \
 wget https://repo-feed.flightradar24.com/linux_x86_64_binaries/fr24feed_${FLIGHTRADAR_VERSION}_amd64.tgz &&\
 tar zxf fr24feed_${FLIGHTRADAR_VERSION}_amd64.tgz &&\
 export LD_LIBRARY_PATH=/usr/local/lib64/:$LD_LIBRARY_PATH

ADD fr24feed.ini /etc/fr24feed.ini
WORKDIR fr24feed_amd64

EXPOSE 8080 8754 30001 30002 30003 30334
ENTRYPOINT ["./fr24feed"]

from docker-flightradar24-feeder.

Related Issues (4)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.