19 lines
400 B
Text
19 lines
400 B
Text
|
# Open a docker that can be used to debug/dev python-openzwave
|
||
|
# Pass in a command line argument to skip build
|
||
|
|
||
|
# If current pwd is scripts, go 1 up.
|
||
|
if [ ${PWD##*/} == "scripts" ]; then
|
||
|
cd ..
|
||
|
fi
|
||
|
|
||
|
if [ $# -gt 0 ]
|
||
|
then
|
||
|
docker build -t home-assistant-dev .
|
||
|
fi
|
||
|
|
||
|
docker run \
|
||
|
--device=/dev/ttyUSB0:/zwaveusbstick:rwm \
|
||
|
-v `pwd`:/usr/src/app \
|
||
|
-t -i home-assistant-dev \
|
||
|
/bin/bash
|