zewelor / bt-mqtt-gateway

A simple Python script which provides a Bluetooth to MQTT gateway, easily extensible via custom workers. See https://github.com/zewelor/bt-mqtt-gateway/wiki for more information.
MIT License
548 stars 116 forks source link

Custom Worker over Docker Compose #131

Closed kraineff closed 4 years ago

kraineff commented 4 years ago

Is it possible to add Custom Worker python file over Docker Compose Volume?

koenvervloesem commented 4 years ago

I wouldn't do this. If it's for testing a new worker, better test it in a venv, or create your own Docker image with docker build that includes the new worker file.

kraineff commented 4 years ago

How I can make a build from local folder using Docker Compose?

koenvervloesem commented 4 years ago

Just do a docker build . -t tagyouwanttouse.

kraineff commented 4 years ago

ok, thanks!