KE
Looks like Nodepay migrated to some V2 and nothing they do makes any sense.
Is this even bandwidth sharing anymore or is it just them asking and paying people for surveys?
Anyway ... archived for reference :) Check Grass, that looks cool :)
Check out other passive income tools that run with Docker!
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
- Before you start, check the status of Nodepay
- Download Docker Desktop.
- Login to Nodepay.
- Open
Developer Toolsand go toApplication(Chrome)/Storage(Firefox). - Go to
Local Storage>https://app.nodepay.aiand copy the value ofnp_webapp_tokenORnp_token(The big array of random numbers and letters). Token lifetime is 7 days. - Replace
NP_COOKIEwith the value that you copied. - Open CMD and use the Docker Run command of the built image from Docker Hub.
- Check and Manage the app from Docker Desktop > Containers.
- 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