Skip to content

madereddy/EarnApp-Docker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Containerized version of BrightData's EarnApp

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 61.0%
  • Dockerfile 39.0%