Kellphy / Nodepay

Unofficial Nodepay Docker image for easy deployment and management.
https://hub.docker.com/r/kellphy/nodepay
GNU General Public License v3.0
4 stars 2 forks source link
bandwidth cash compose docker income internet money nodepay passive-income sharing

Contact Me

But before, check the status of Nodepay

Also, check out other passive income tools that run with Docker, such as Grass, HoneyGain, Mysterium, and many others!

Setup

  1. Download Docker Desktop.
  2. Login to Nodepay.
  3. Open Developer Tools and go to Application(Chrome) / Storage(Firefox).
  4. 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.
  5. Replace NP_COOKIE with the value that you copied.
  6. Open CMD and use the Docker Run command of the built image from Docker Hub.
  7. Check and Manage the app from Docker Desktop > Containers.
  8. 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

    Docker Run

    docker run -d \
    --name Nodepay \
    --restart unless-stopped \
    --pull always \
    -e NP_COOKIE="YOURCOOKIE" \
    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

    Docker Run

    docker build -t nodepay . && \
    docker run -d \
    --name Nodepay \
    --restart unless-stopped \
    -e NP_COOKIE="YOURCOOKIE" \
    nodepay