Your Kanboard instance is not configured to install plugins from the user interface #5186
Replies: 10 comments 5 replies
-
+1 |
Beta Was this translation helpful? Give feedback.
-
See https://docs.kanboard.org/en/latest/admin_guide/plugins.html |
Beta Was this translation helpful? Give feedback.
-
Sure, I know about the gerneral configuration doc. But what about the docker installation? What and how has to be configured when using the docker installation? |
Beta Was this translation helpful? Give feedback.
-
@voodoohoo Do you link the correct ...
kanboard
volumes:
- /local/path/config.php:/var/www/app/config.php:ro
... Because I maped the false one with After that I have to adapt the permissions to 777. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
https://kanboard.discourse.group/t/docker-and-plugins/707/2 He is correct, the changed suggested works. |
Beta Was this translation helpful? Give feedback.
-
Yeah this worked for me as well. |
Beta Was this translation helpful? Give feedback.
-
i am not using docker and i was changing the config.default.php whereas, it should be copying as config.php and the changes should be made there. loved kanboard so far, has the potential to be hacked as the top project management tool with the plugins. |
Beta Was this translation helpful? Give feedback.
-
The documentation has been improved. I hope that helps. Docker Compose: version: '2'
services:
kanboard:
image: kanboard/kanboard:latest
ports:
- "8080:80"
- "443:443"
volumes:
- kanboard_data:/var/www/app/data
- kanboard_plugins:/var/www/app/plugins
- kanboard_ssl:/etc/nginx/ssl
environment:
- PLUGIN_INSTALLER=true
volumes:
kanboard_data:
driver: local
kanboard_plugins:
driver: local
kanboard_ssl:
driver: local Docker command line: docker run --rm \
--name=kanboard
-p 8080:80 \
-e PLUGIN_INSTALLER=true \
kanboard/kanboard:latest |
Beta Was this translation helpful? Give feedback.
-
Hello, i got the same Problem like the author.
i got no manual installed plugins listed; can see the Plugin Directory; cant "install" any Plugin. got at least the msg: Your Kanboard instance is not configured to install plugins from the user interface Ideas welcome. just for the notes: |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
All reactions