August 16, 20223 yr Hi, I already install and config to run success SFTPGO Docket: https://github.com/drakkan/sftpgo I already search around but i don't see any guide. I am new with docker. I check around file system but i don't see where to install this plugin for SFTPGo Docker: https://github.com/sftpgo/sftpgo-plugin-geoipfilter#readme Could someone give me some advice? I appreciate so much! Edited August 16, 20223 yr by meomapvn
August 21, 20223 yr The docker image does not come with plugins - if you connect to the Docker image and check the configuration you'll get : $ grep plug /etc/sftpgo/sftpgo.json "plugins": [] $ => No plug-in configured If you search for "*plug*" files in the container with find command nothing gets listed. => No plug-in binary in the container Solution is to use another Repository containing the plugin : Edit the SFTPGo container and in Repository field replace drakkan/sftpgo by drakkan/sftpgo:edge-plugins Save and once the image is built , restart your SFTPGo image and you'll get an image with Geofilter plugin. $ find /usr/local/bin -name "*plug*" /usr/local/bin/sftpgo-plugin-eventsearch /usr/local/bin/sftpgo-plugin-eventstore /usr/local/bin/sftpgo-plugin-geoipfilter /usr/local/bin/sftpgo-plugin-kms /usr/local/bin/sftpgo-plugin-metadata /usr/local/bin/sftpgo-plugin-pubsub They are however not enabled : grep plug /etc/sftpgo/sftpgo.json "plugins": [] You'll have to find a way to have sftpgo.json changes persistant once you configure it to enable the plugin. Official page for configuring the plugin is : https://github.com/sftpgo/sftpgo-plugin-geoipfilter#readme I found a post mentioning how on activate plugins for Ubuntu 22.04 on https://www.howtoforge.com/how-to-install-sftpgo-on-ubuntu-22-04/
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.