A lightweight docker image running multiple passive income applications. Supports ARM and x86 architectures.
- Works on raspberry pi
- Earn small amount of money (beer money) by sharing for your internet bandwidth
- 100% passive income, set and forget
- No continuous disk writes - particularly helpful for devices using flash storage like raspberry pi
- Only verified services with confirmed payouts
- Automatically claim honeygain lucky pot to maximize passive income.
-
Make sure
docker
is installed on your system. -
git clone
git clone https://github.com/technotiger/CashReaper.git && cd CashReaper
- Edit the
settings.conf
file using any text editor. Refer the following section for details. For example, to edit using nano:
nano settings.conf
Save the modified settings file.
- Build the docker image and run the container. This can take a several minutes.
./run.sh
Docker Logs: The docker container created by run.sh script will have logs turned off to prevent unnesessary disk activity. You can change this behaviour by editing the run.sh script before executing it. For example, you can delete "--log-driver none
" from the docker run command in the run.sh script to use the default docker log setting.
Register for an account. In the settings file, add your email to HG_EMAIL
and password to HG_PASSWORD
and set the USE_HONEYGAIN
to y
.
Example
# Honeygain
USE_HONEYGAIN=y
HG_EMAIL=example@example.com
HG_PASSWORD=MyP@$$W0rd
Automatically claim lucky pot
Honeygain offers additional credits in the form of lucky pot and achievements. Users need to visit their website everyday to claim these credits. You can automate this process by setting USE_HONEYGAIN_AUTOCLAIM
to y
in the settings file.
This feature will automatically claim the daily Honeygain lucky pot and available rewards, thereby maximizing your passive earnings.
Example
USE_HONEYGAIN_AUTOCLAIM=y
OPTIONAL: You can optionally specify how often the program checks the website for lucky pot by setting HG_AUTOCLAIM_INTERVAL
to the desired time interval specified in seconds. This is not required.
Example
HG_AUTOCLAIM_INTERVAL=12345
By default, the program checks the website every 3 hours until the lucky pot becomes available for the day. However, users have the flexibility to define their preferred interval within the range of 600 seconds (equivalent to 10 minutes) to 86400 seconds (equivalent to 24 hours).
Register for an account. In the settings file, add your email to PA_EMAIL
and password to PA_PASSWORD
and set the USE_PAWNSAPP
to y
.
Example
# Pawns.app
USE_PAWNSAPP=y
PA_EMAIL=example@example.com
PA_PASSWORD=MyP@$$W0rd
Register for an account. Set USE_EARNAPP
to y
in the settings.conf
file.
The run.sh script will print a link that you need to paste into your browser to "link" the worker to your account. This needs to be repeated per container instance.
To get this link manually, you can use the following command.
docker exec -it cashreaper earnapp register | grep -Eo 'https.+'
Example
# Earnapp
USE_EARNAPP=y
Storage: Persistent storage is recommend for Earnapp to ensure that you don't have to repeat the worker-account linking process when container is recreated. If you use the run.sh script, a docker volume named vol-cashreaper will be automatically created and used for this purpose.
Register for an account. In the settings file set USE_PACKET_STREAM
to y
and PS_ID
to your CID. To find your CID, navigate to the download page and find the linux/docker instructions. You will find your CID in the setup command listed there - look for CID=xxxx.
Example
# Packet Stream
USE_PACKET_STREAM=y
PS_ID=ab12
Register for an account. In the settings file, add your Application Token
to TRAFF_TOKEN
and set the USE_TRAFFMONETIZER
to y
.
You can find the Application Token
on your dashboard.
Example
# Traffmonetizer
USE_TRAFFMONETIZER=y
TRAFF_TOKEN=ZXhhbXBsZFVYQU1RTEVlaGFtcGxlRVhXTVBMRQo=
Register for an account. In the settings file, add your email to BP_EMAIL
and password to BP_PASSWORD
and set the USE_BITPING
to y
.
Example
# BitPing
USE_BITPING=y
BP_EMAIL=example@example.com
BP_PASSWORD=MyP@$$W0rd
You will need an account for each of the following services.
- Register Honeygain
- Register Pawns.app
- Register Earnapp
- Register Packetstream
- Register Traffmonetizer
- Register BitPing
** Please use these links to support this project at no cost to you. You can receive a joining bonus for using these referral links.
This project uses code from the following open-source projects:
PiCash (https://github.com/chashtag/PiCash)
Honeygain Auto Claim (https://github.com/MrLoLf/HoneygainAutoClaim)