Syncthing with OS5

Take any linux machine with docker.io and docker-compose installed.
Also make sure libxml2 and openssl is installed,

apt-get install docker.io docker-compose
apt-get install libxml2 openssl

clone the repository GitHub - WDCommunity/wdpksrc: Cross compilation framework to create native packages for the Western Digital My Cloud to a folder and cd to that folder.

git clone https://github.com/WDCommunity/wdpksrc.git
cd wdpksrc

Then build and run the docker container from following commands,

docker build -t wdpk .    
docker run -it -v $(pwd):/wdpksrc wdpk /bin/bash    

Now you should be inside the docker shell

cd wdpk/syncthing
./build.sh
exit

You will see a folder created named packages/syncthing
You will get what you are looking for inside this folder.

Instead of syncthing you can try any other package.

2 Likes