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. Refer the following section for details. For example, to edit using nano:
nano settings.conf
Save the modified settings file.
- Build docker image. This can take a few minutes.
docker build . -t technotiger/cashreaper:latest
- Once image is built, create and run the container.
./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 will run a program every 6 hours to automatically claim any available honeygain lucky pot and unlocked rewards, thus maximizing your earnings while remaining 100% passive.
Example
USE_HONEYGAIN_AUTOCLAIM=y
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 Earnapp
- Register Honeygain
- Register Pawns.app
- Register Packetstream
- Register Traffmonetizer
- Register BitPing
** Please use these links to support this project at no cost to you. You will receive a setup bonus on some sites 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)