Runs the loggo graphing program.
TODO: Integrate this Docker image with automated build, so the Dockerfile can automatically get updated.
docker container run tritonuas/loggo --rm --network host
Run on the same network as loggo-webserver
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
Content type
Image
Digest
Size
790 MB
Last updated
over 6 years ago
docker pull tritonuas/loggo