You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm looking for some help about watchtower-plugins usage.
Currently, I'm running c-lightning with docker. So, in order to add use watchtower-plugin, I've managed to build a new c-lightning image with python-teos.
it's looks like this RUN mkdir -p /python-plugin/plugins && \ git clone https://github.com/talaia-labs/python-teos.git && \ cd python-teos && pip3 install . && \ cd watchtower-plugin && pip3 install -r requirements.txt
I'm able to build my customized image but the plugins does not start properly when I use it in the lightning.conf plugin=/python-teos/watchtower-plugin/watchtower.py
watchtower-plugin fails with the following error
Traceback (most recent call last):
File "/python-teos/watchtower-plugin/watchtower.py", line 19, in
from common.config_loader import ConfigLoader, UnknownConfigParam
ImportError: cannot import name 'UnknownConfigParam' from 'common.config_loader' (/usr/local/lib/python3.9/dist-packages/common/config_loader.py)
I'm looking for some help about watchtower-plugins usage.
Currently, I'm running c-lightning with docker. So, in order to add use watchtower-plugin, I've managed to build a new c-lightning image with python-teos.
it's looks like this
RUN mkdir -p /python-plugin/plugins && \ git clone https://github.com/talaia-labs/python-teos.git && \ cd python-teos && pip3 install . && \ cd watchtower-plugin && pip3 install -r requirements.txtI'm able to build my customized image but the plugins does not start properly when I use it in the lightning.conf
plugin=/python-teos/watchtower-plugin/watchtower.pywatchtower-plugin fails with the following error
I'm not really sure the way to use the plugin