Mercurial > code > home > repos > homeauto
view service/collector/makefile @ 354:818b7b410575
patch rdflib_jsonld for new rdflib
Ignore-this: feb5ca55efddb57a76162794e1a452a0
author | drewp@bigasterisk.com |
---|---|
date | Mon, 03 Sep 2018 01:32:48 -0700 |
parents | 7716b1810d6c |
children | ee74dc3b58fb |
line wrap: on
line source
JOB=collector PORT=9072 TAG=bang6:5000/${JOB}_x86:latest build_image: rm -rf tmp_ctx mkdir -p tmp_ctx cp -a Dockerfile ../../lib/*.py ../../lib/twisted_sse_demo *.py req* tmp_ctx docker build --network=host -t ${TAG} tmp_ctx docker push ${TAG} rm -r tmp_ctx shell: docker run --rm -it --cap-add SYS_PTRACE --net=host ${TAG} /bin/bash local_run: docker run --rm -it -p ${PORT}:${PORT} \ -v `pwd`:/mnt \ --net=host \ ${TAG} \ python /mnt/sse_collector.py -v local_run_strace: docker run --rm -it -p ${PORT}:${PORT} \ -v `pwd`:/mnt \ --net=host \ --cap-add SYS_PTRACE \ ${TAG} \ strace -f -tts 200 python /mnt/sse_collector.py -v