jimeh / docker-znc

Run the ZNC IRC Bouncer in a Docker container.
136 stars 86 forks source link

Unable to find module [controlpanel] #4

Closed srid closed 10 years ago

srid commented 10 years ago

starting from an empty volume directory:

$ docker run ...
Opening Config [/znc-data/configs/znc.conf]...
Loading Global Module [webadmin]... [/usr/lib/znc/webadmin.so]
Loading user [admin]
Loading Module [chansaver]... [/usr/lib/znc/chansaver.so]
Loading Module [controlpanel]... [ Unable to find module [controlpanel] ]
Unable to find module [controlpanel]
Unrecoverable config error.
jimeh commented 10 years ago

Did you build the image yourself, or pull down the one the docker index? I just tried myself with a empty folder running the following:

docker run -d -p 36667:6667 -v /home/$(whoami)/.znc:/znc-data jimeh/znc

And it works just fine, including the controlpanel module. Got any more details you can share about your setup?

jimeh commented 10 years ago

Ok, I just tried building it from scratch, and it seems the wrong version of znc is being installed via apt-get. I'll have a look at switching to building ZNC from source rather than installing it from a 3rd-part PPA.

jimeh commented 10 years ago

This is now be fixed as of bfc867a. The docker index has been updated, and building it manually works too as a specific ZNC version is built from source.