From cd83a6410509120d52a4167054471886571f9ea6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Franc=CC=A7ois=20Meinesz?= <jfmeinesz@gmail.com> Date: Mon, 15 May 2023 15:07:22 +0100 Subject: [PATCH] Update Repocket new configuration + Add ProxyLite and ProxyRack --- README.md | 40 +++++++++++++++++++++++++++++++++++++++- docker-compose.yml | 25 ++++++++++++++++++++++++- 2 files changed, 63 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 46c7efb..226586e 100644 --- a/README.md +++ b/README.md @@ -16,10 +16,12 @@ You can use this project on any device that supports docker. This includes : Ras + [PacketStream](#-packetstream) + [HoneyGain](#-honeygain) + [EarnApp](#-earnapp) + + [ProxyLite](#-proxylite) + [Repocket](#-repocket) + [TraffMonetizer](#-traffmonetizer) + [Pawns](#-pawns) + [Bitping](#-bitping) + + [ProxyRack](#-proxyrack) - [Running the stack](#4-running-the-stack) - [Support](#5-support) @@ -162,6 +164,7 @@ In the [`docker-compose.yml`](docker-compose.yml), edit : | --------- | -----| | `YOUR_HONEYGAIN_EMAIL_ADDRESS` | HoneyGain account address | | `YOUR_USER_HONEYGAIN_PASSWORD` | HoneyGain account password | +| `-device` | (optional) A device name for display purposes, default is `EarningMachine` must be unique per IP/machine | ## 🟧 EarnApp @@ -200,6 +203,22 @@ In the [`docker-compose.yml`](docker-compose.yml), edit : | `YOUR_EARNAPP_NODE_ID` | EarnApp Node Id | +## 🟫 ProxyLite + +### Account creation + +Create your account on the following website + +[https://proxylite.ru](https://proxylite.ru/?r=KYRQJMJP "https://proxylite.ru/") + +### Update the docker-compose + +In the [`docker-compose.yml`](docker-compose.yml), edit : + +| Variable | Description | +| --------- | -----| +| `YOUR_PROXYLITE_ACCOUNT_ID` | ProxyLite Account id can be found in the dashboard (https://lk.proxylite.ru/index.php/) | + ## 🟫 Repocket ### Account creation @@ -215,7 +234,7 @@ In the [`docker-compose.yml`](docker-compose.yml), edit : | Variable | Description | | --------- | -----| | `YOUR_REPOCKET_EMAIL_ADDRESS` | Repocket account address | -| `YOUR_REPOCKET_USER_PASSWORD` | Repocket account password | +| `YOUR_REPOCKET_API_KEY` | Repocket API Key can be found in the dashboard (https://app.repocket.co/) | ## 🟫 TraffMonetizer @@ -269,6 +288,25 @@ Execute the following command and follow the BitPing steps (enter your BitPing c When `Successfully logged in to Bitping` is displayed, you can safely kill the container with `CTRL+C` or `CMD+C`. + +## 🟥 ProxyRack + +### Account creation + +Create your account on the following website + +[https://peer.proxyrack.com/register](https://peer.proxyrack.com/ref/vra2bkrior8n3nb1rna0wxivorer0aflnyjhp4xl "https://peer.proxyrack.com/register") + +### Update the docker-compose + +In the [`docker-compose.yml`](docker-compose.yml), edit : + +| Variable | Description | +| --------- | -----| +| `YOUR_PROXYRACK_API_KEY` | ProxyRack Api key can be generated in the profile section of your account (https://peer.proxyrack.com/profile) | +| `device_name` | (optional) A device name for display purposes, default is `EarningMachine` must be unique per IP/machine | + + ------------- # 4. Running the stack diff --git a/docker-compose.yml b/docker-compose.yml index 3ec1610..f2733d0 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -94,12 +94,35 @@ services: restart: always environment: - RP_EMAIL=YOUR_REPOCKET_EMAIL_ADDRESS - - RP_PASSWORD=YOUR_REPOCKET_USER_PASSWORD + - RP_API_KEY=YOUR_REPOCKET_API_KEY networks: default: ipv4_address: 172.106.0.80 #end of Repocket Configuration + #Proxylite Configuration + proxylite: + image: proxylite/proxyservice:latest + restart: always + environment: + - USER_ID=YOUR_PROXYLITE_ACCOUNT_ID + networks: + default: + ipv4_address: 172.106.0.90 + #end of Proxylite Configuration + + #ProxyRack Configuration + proxyrack: + image: proxyrack/pop:latest + restart: always + environment: + - api_key=YOUR_PROXYRACK_API_KEY + - device_name=EarningMachine + networks: + default: + ipv4_address: 172.106.0.100 + #end of ProxyRack Configuration + networks: default: driver: bridge