where to put plugins when using docker image #2782
-
hello, currently i'm running ArchiSteamFarm as a docker image inside my docker-compose configuration
how can I now install a plugin? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
There are two ways, one would be the one I recommend, and one will be alternative that also works but is much more complicated: Recommended way: Alternative way (overcomplicated, but will also work): It's up to you which way you prefer, I'd personally go with first option but if you don't want to mount every single plugin directory (for example you're making deterministic docker recipe that doesn't know directories in advance), second one is preferred. |
Beta Was this translation helpful? Give feedback.
There are two ways, one would be the one I recommend, and one will be alternative that also works but is much more complicated:
Recommended way:
Create a directory for each of the custom plugins you have, majority of custom plugins already come with such directory, for others you can just create a folder and put
dll
(and other files, if any) inside. Then mount/path/to/your/customplugin
into/app/plugins/customplugin
. As long ascustomplugin
doesn't clash with any of the plugins ASF comes with, ASF will be able to discover both official plugins as well as your custom plugin during runtime. And since ASF also loads plugins deeper, you can simply have/path/to/your/plugins
inside which ther…