file-system binary provider template configuration
If you choose to use the file-system template, configure the configuration binarystore.xml as follows. While you don't need to configure anything else in your binarystore.
If you choose to use the file-system template, configure the binarystore.xml configuration as follows.
<config version="v1">
<chain template="file-system"/>
</config>What's in the template?
While you don't need to configure anything else in your binarystore.xml, this is what the file-system template looks like under the hood.
<chain> <!-- template="file-system" -->
<provider id="file-system" type="file-system"/>
</chain>In this example, the filestore and temp folder are located under the root directory of the machine.
<config version="v1">
<chain template="file-system"/>
<provider id="file-system" type="file-system">
<baseDataDir>/var/opt/jfrog/data</baseDataDir>
<fileStoreDir>/filestore</fileStoreDir>
<tempDir>/temp</tempDir>
</provider>
</config>Where:
Updated 2 days ago
