OpenZWave / qt-openzwave

QT5 Wrapper for OpenZWave
GNU Lesser General Public License v3.0
105 stars 30 forks source link

Question about docker usage #197

Open rwa opened 3 years ago

rwa commented 3 years ago

The recommended docker launch for the ozwdaemon is:

docker run -it \ --security-opt seccomp=unconfined \ --device=/dev/ttyUSB0 \ -v $PWD/ozw:/opt/ozw/config \ -e MQTT_SERVER="10.100.200.102" \ -e USB_PATH=/dev/ttyUSB0 \ -p 1983:1983 \ openzwave/ozwdaemon:latest

It seems strange to not use the -d flag to run ozwdaemon as a... daemon. Is there a reason for that?

Tieske commented 3 years ago

I think the example is used to show the parameters, the -d is a docker parameter not an OZW one.