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!
- Download Docker Desktop.
- Login to Nodepay.
- Open
Developer Tools
and go toApplication(Chrome)
/Storage(Firefox)
. - Go to
Local Storage
>https://app.nodepay.ai
and copy the value ofnp_webapp_token
ORnp_token
(The big array of random numbers and letters). Token lifetime is 7 days. - Replace
NP_COOKIE
with 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.
A) Use built image from Docker Hub
services:
nodepay:
container_name: Nodepay
image: kellphy/nodepay
restart: unless-stopped
pull_policy: always
environment:
- NP_COOKIE=YOURCOOKIE
docker run -d \
--name Nodepay \
--restart unless-stopped \
--pull always \
-e NP_COOKIE="YOURCOOKIE" \
kellphy/nodepay
B) Build it yourself from GitHub
services:
nodepay:
container_name: Nodepay
image: nodepay
restart: unless-stopped
build:
context: .
dockerfile: Dockerfile
environment:
- NP_COOKIE=YOURCOOKIE
docker build -t nodepay . && \
docker run -d \
--name Nodepay \
--restart unless-stopped \
-e NP_COOKIE="YOURCOOKIE" \
nodepay