diff --git a/README.md b/README.md index c2b0787..cd37ebf 100644 --- a/README.md +++ b/README.md @@ -1,32 +1,30 @@ # PocketMoneyMaker -The following sites run a program where they pay little money for a very small part of your internet bandwidth.
-It won't make you rich, but opposed to other sites which require you to fill forms, play games etc. these apps require no action from you at all after setting up - a true "Passive Income" :)
-I created docker commands optimized for RaspberryPi 3/4
- -1. Sign up to one or more of the following sites -2. Use your relevant identification in the docker commands -3. Create the containers -4. Earn money - -repocket.co
- -bitping.com
-Bitping requires a different setup - the app need to be started at least once in interactive mode for the first connection. -Use the following command in your home folder: -sudo docker run --rm -it -v ${PWD}/.data/.bitping/:/root/.bitping bitping/bitping-node:latest -The container will run and ask for your credentials, after you're succefully authenticated it will create a sub folder with the connection parameters. -Now you can use CTRL+C to stop the container and proceed with the standard docker setup. It will be faster since the image has already been downloaded. -
-Emulation for ARM devices (RPi)
-In some cases you may encounter an error:
-WARNING: The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm64/v8) and no specific platform was requested
-To fix that you need to install an emulator using the following command:
-sudo docker run --privileged --rm tonistiigi/binfmt --install all
-You can find more info here. +
It won't make you rich, but opposed to other sites which require you to fill forms, play games etc. these apps require no action from you at all after setting up - a true "Passive Income" :)
+I created docker commands optimized for RaspberryPi 3/4
+To register your node with earnapp, you need to run the container with a unique hash that you can generate. After running for a few minutes, you will be able to register your hash with earnapp site.
+To generate your hash (YOUR_DEVICE_NAME can be any string):
+echo -n 'YOUR_DEVICE_NAME' | md5sum | sed 's/.*/sdk-node-&/'
+To register your node using the hash use the following link: https://earnapp.com/r/YOUR_HASH
+ +Bitping requires a different setup - the app need to be started at least once in interactive mode for the first connection. Use the following command in your home folder: sudo docker run --rm -it -v ${PWD}/.data/.bitping/:/root/.bitping bitping/bitping-node:latest The container will run and ask for your credentials, after you're succefully authenticated it will create a sub folder with the connection parameters. Now you can use CTRL+C to stop the container and proceed with the standard docker setup. It will be faster since the image has already been downloaded.
+Emulation for ARM devices (RPi)
+In some cases you may encounter an error:
+WARNING: The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm64/v8) and no specific platform was requested
+To fix that, you need to install an emulator using the following command:
+sudo docker run --privileged --rm tonistiigi/binfmt --install all
+You can find more info here.