UNOFFICIAL image for BrightData's EarnApp.
100K+
EarnApp container with Debian slim, multi-architecture support, and persistent configuration.
Use my referral link when creating an EarnApp account:
Sign up here
amd64, arm64, arm/v7/etc/earnappThe UUID is 32 characters long with lowercase alphabet and numbers. You can either create this by yourself or via this command:
echo -n sdk-node- && head -c 1024 /dev/urandom | md5sum | tr -d ' -'
Example output
sdk-node-0123456789abcdeffedcba9876543210
Before registering your device, ensure that you pass the UUID into the container and start it first. Then proceed to register your device using the url:
https://earnapp.com/r/UUID
Example url
https://earnapp.com/r/sdk-node-0123456789abcdeffedcba9876543210
docker run -d \
--name earnapp \
-e EARNAPP_UUID="YOUR_EARNAPP_UUID" \
-v /etc/earnapp:/etc/earnapp \
madereddy/earnapp:latest
services:
earnapp:
container_name: earnapp
image: madereddy/earnapp
environment:
- EARNAPP_UUID=<YOUR_EARNAPP_UUID>
restart: always
The container uses /etc/earnapp to store:
uuid – your EarnApp UUID
status – runtime status file
View logs in real-time:
docker logs -f earnapp
Sample output:
✔ Registered
✔ EarnApp is active (making money in the background)
The container fakes hostnamectl and lsb_release so EarnApp can run in a minimal Debian environment.
The entrypoint keeps EarnApp running and will automatically retry if it crashes.
Content type
Image
Digest
sha256:97cf64360…
Size
56.8 MB
Last updated
7 months ago
docker pull madereddy/earnapp