Sign inSign up

tritonuas/loggo

By tritonuas

•Updated over 6 years ago

Image
0

351

tritonuas/loggo repository overview

⁠Loggo

Runs the loggo⁠ graphing program.

TODO: Integrate this Docker image with automated build, so the Dockerfile can automatically get updated.

⁠To Run:

docker container run tritonuas/loggo --rm --network host
Run on the same network as loggo-webserver

⁠Dockerfile Contents:

FROM python:2
RUN apt-get update
RUN apt-get install -y --allow-unauthenticated --fix-missing python-dev python-pip git
RUN git clone https://github.com/pyenv/pyenv.git ~/.pyenv \
  && echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bash_profile \
  && echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bash_profile
RUN pip install pipenv
RUN mkdir -p /app/loggo
ADD . /app/loggo
WORKDIR /app/loggo
RUN pipenv install

CMD cd src && pipenv run python run_mavserver.py $MAVLINK $WS_PORT $DRONEKIT $ZMQ_PUB $ZMQ_SUB

⁠CHANGELOG

  • 1.1 - Downgrade python 2.7.17 -> 2.7.15 to pass tests

Tag summary

Content type

Image

Digest

Size

790 MB

Last updated

over 6 years ago

docker pull tritonuas/loggo