kellphy/nodepay

By kellphy

Updated about 1 year ago

Nodepay docker container

Image
Networking
Internet of things
4

10K+

kellphy/nodepay repository overview

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

Usage Options

A) Use built image from Docker Hub

Docker Compose
services:
  nodepay:
    container_name: Nodepay
    image: kellphy/nodepay
    restart: unless-stopped
    environment:
      - NP_COOKIE=YOURCOOKIE
Docker Run
docker run -d \
  --name Nodepay \
  --restart unless-stopped \
  -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

Tag summary

Content type

Image

Digest

sha256:08a06f960

Size

340.7 MB

Last updated

about 1 year ago

docker pull kellphy/nodepay