UNOFFICIAL Containerized Docker Image for BrightData's EarnApp
latest
1.xxx.xxx
via docker-compose.yaml
:
version: '3'
services:
earnapp:
image: madereddy/earnapp
container_name: earnapp
environment:
- EARNAPP_UUID=sdk-node-0123456789abcdeffedcba9876543210
restart: unless-stopped
-
The 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