I'm trying to install the right_time_context plugin in CKAN run within a docker container, but the plugin seems to be not recognized by CKAN.
These are the steps I'm following:
cd /home/tempuser/tempfolder
git clone https://github.com/conwetlab/ckanext-right_time_context.git
sudo su
. /var/lib/docker/volumes/docker_ckan_home/_data/venv/bin/activate
cd /home/tempuser/tempfolder/ckanext-right_time_context
python setup.py install
sudo nano /var/lib/docker/volumes/docker_ckan_config/_data/production.ini
- Add
right_time_context to ckan.plugins and to ckan.views.default_views
cd /home/tempuser/tempfolder/ckan/contrib/docker
- Recompile the docker container:
sudo docker-compose restart ckan
But if I see the log through sudo docker-compose logs -f ckan this is the error:
ckan | raise PluginNotFoundException(plugin_name)
ckan | ckan.plugins.core.PluginNotFoundException: right_time_context
I'm trying to install the right_time_context plugin in CKAN run within a docker container, but the plugin seems to be not recognized by CKAN.
These are the steps I'm following:
cd /home/tempuser/tempfoldergit clone https://github.com/conwetlab/ckanext-right_time_context.gitsudo su. /var/lib/docker/volumes/docker_ckan_home/_data/venv/bin/activatecd /home/tempuser/tempfolder/ckanext-right_time_contextpython setup.py installsudo nano /var/lib/docker/volumes/docker_ckan_config/_data/production.iniright_time_contexttockan.pluginsand tockan.views.default_viewscd /home/tempuser/tempfolder/ckan/contrib/dockersudo docker-compose restart ckanBut if I see the log through
sudo docker-compose logs -f ckanthis is the error: