Skip to content

Kellphy/Nodepay

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ex: Grass, HoneyGain, Mysterium, PawnsApp, PacketStream, BitPing, EarnApp, EarnFM, Repocket, TraffMonetizer, SpeedShare, ProxyRack, ProxyLite, PacketShare etc.

Contact Me if you do not find actively maintained images on the web, and I will share my current setup :)

Setup

  1. Before you start, check the status of Nodepay
  2. Download Docker Desktop.
  3. Login to Nodepay.
  4. Open Developer Tools and go to Application(Chrome) / Storage(Firefox).
  5. Go to Local Storage > https://app.nodepay.ai and copy the value of np_webapp_token OR np_token (The big array of random numbers and letters). Token lifetime is 7 days.
  6. Replace NP_COOKIE with the value that you copied.
  7. Open CMD and use the Docker Run command of the built image from Docker Hub.
  8. Check and Manage the app from Docker Desktop > Containers.
  9. If you're stuck at checking login information, repeat steps 2 to 6.

Usage Options

A) Use built image from Docker Hub

Docker Compose

services:
  nodepay:
    container_name: Nodepay
    image: kellphy/nodepay
    restart: unless-stopped
    pull_policy: always
    environment:
      - NP_COOKIE=YOURCOOKIE
      - PROXY_URL=socks5://USER:PASSWORD@IP:PORT

Docker Run

docker run -d \
  --name Nodepay \
  --restart unless-stopped \
  --pull always \
  -e NP_COOKIE="YOURCOOKIE" \
  -e PROXY_URL="socks5://USER:PASSWORD@IP:PORT" \
  kellphy/nodepay

B) Build it yourself from GitHub

Docker Compose

services:
  nodepay:
    container_name: Nodepay
    image: nodepay
    restart: unless-stopped
    build:
      context: .
      dockerfile: Dockerfile
    environment:
      - NP_COOKIE=YOURCOOKIE
      - PROXY_URL=socks5://USER:PASSWORD@IP:PORT

Docker Run

docker build -t nodepay . && \
docker run -d \
  --name Nodepay \
  --restart unless-stopped \
  -e NP_COOKIE="YOURCOOKIE" \
  -e PROXY_URL="socks5://USER:PASSWORD@IP:PORT" \
  nodepay