Runs the Symform peer-to-peer backup service on Ubuntu 14.04.
495
docker run -d \
-v <your_config_directory>:/var/lib/symform \
-v <your_contrib_directory>:/contrib \
-p 59234:59234 \
flyte/symform
Once you've got the Symform web interface running on http://localhost:59234 you must log in with your Symform account. After completing the configuration wizard check the <your_config_directory>/node.config file to see which port Symform has chosen for your contribution service to listen on. The line to look for should be similar to this:
<contribution enabled="True" fragmentStorePath="/contrib/SymformContribution" port="53068" manualPort="False" localAddress="" registrationAddress="" enableBackgroundTasks="True" concurrentMoves="2" logicalVolumeSize="0" ignoreThrottle="False" enablePortForwarding="True" testFragmentConfirmAction="NotSpecified" enableUtp="True">
In this case, port 53068 has been chosen. You may now stop/delete this docker container and run another one using the following command in order to enable contribution:
docker run -d \
-v <your_config_directory>:/var/lib/symform \
-v <your_contrib_directory>:/contrib \
-p 59234:59234 \
-p 0.0.0.0:53068:53068 \
flyte/symform
Content type
Image
Digest
Size
140.3 MB
Last updated
over 10 years ago
docker pull flyte/symform