Skip to content

Commit

Permalink
Update Repocket new configuration + Add ProxyLite and ProxyRack
Browse files Browse the repository at this point in the history
  • Loading branch information
jf-m committed May 15, 2023
1 parent f0ceb74 commit cd83a64
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 2 deletions.
40 changes: 39 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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

Expand Down
25 changes: 24 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cd83a64

Please sign in to comment.