Skip to content

Latest commit

 

History

History
41 lines (34 loc) · 1.19 KB

DOCKERHUB_README.md

File metadata and controls

41 lines (34 loc) · 1.19 KB

EarnApp Docker

UNOFFICIAL Containerized Docker Image for BrightData's EarnApp

Available Tags

  • latest
  • 1.xxx.xxx

Run

via docker-compose.yaml:

version: '3'
services:
  earnapp:
    image: madereddy/earnapp
    container_name: earnapp
    environment:
      - EARNAPP_UUID=sdk-node-0123456789abcdeffedcba9876543210
    restart: unless-stopped

How to Get UUID

  1. 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

  2. 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

Credit

@fazalfarhan01

@cwlu2001

Source