-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
117 lines (104 loc) · 3.04 KB
/
Copy pathdocker-compose.yml
File metadata and controls
117 lines (104 loc) · 3.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
version: '3.5'
services:
# Start of Earnapp section (remove this if Earnapp not wanted)
Earnapp:
image: fazalfarhan01/earnapp:lite
volumes:
- earnapp-data:/etc/earnapp
restart: always
environment:
- EARNAPP_UUID=$EARNAPP_DEVICE_ID
networks:
default:
ipv4_address: 172.106.0.20
# Start of HoneyGain section (remove this if HoneyGain not wanted)
Honeygain:
image: honeygain/honeygain
command: -tou-accept -email $HONEYGAIN_EMAIL -pass '$HONEYGAIN_PASSWD' -device $DEVICE_NAME
restart: always
networks:
default:
ipv4_address: 172.106.0.30
# Start of IproyalPawns section (remove this if IproyalPawns not wanted)
IproyalPawns:
image: iproyal/pawns-cli:latest
command: -email=$IPROYALPAWNS_EMAIL -password='$IPROYALPAWNS_PASSWD' -device-name=$DEVICE_NAME -accept-tos
restart: always
networks:
default:
ipv4_address: 172.106.0.40
# Start of Peer2profit section (remove this if Peer2profit not wanted)
Peer2profit:
image: peer2profit/peer2profit_linux:latest
restart: always
environment:
- P2P_EMAIL=$PEER2PROFIT_EMAIL
networks:
default:
ipv4_address: 172.106.0.50
# Start of Packetstream section (remove this if Packetstream not wanted)
Packetstream_PsClient:
image: packetstream/psclient:latest
restart: always
environment:
- CID=$PACKETSTREAM_CID
networks:
default:
ipv4_address: 172.106.0.60
Packetstream_Watchtower:
depends_on:
- Packetstream_PsClient
image: containrrr/watchtower
command: --cleanup --include-stopped --revive-stopped --interval 60 ${_COMPOSE_PROJECT_NAME}_Packetstream_PsClient_${_COMPOSE_PROJECT_STACK_ID}
volumes:
- /var/run/docker.sock:/var/run/docker.sock
restart: always
networks:
default:
ipv4_address: 172.106.0.61
# Start of Bitping section (remove this if Bitping not wanted)
Bitping:
image: bitping/bitping-node:latest
restart: always
volumes:
- ./data/bitping:/root/.bitping
networks:
default:
ipv4_address: 172.106.0.70
# Start of TraffMonetizer section (remove this if TraffMonetizer not wanted)
TraffMonetizer:
image: traffmonetizer/cli_v2:latest
restart: always
command: start accept --token ${TRAFFMONETIZER_TOKEN}
networks:
default:
ipv4_address: 172.106.0.80
# Start of Repocket section (remove this if Repocket not wanted)
Repocket:
image: repocket/repocket:latest
restart: always
environment:
- RP_EMAIL
- RP_API_KEY
networks:
default:
ipv4_address: 172.106.0.90
# Start of Proxyrack section (remove this if Proxyrack not wanted)
Proxyrack:
image: proxyrack/pop:latest
restart: always
environment:
- api_key=$PROXYRACK_API_KEY
- device_name=$DEVICE_NAME
networks:
default:
ipv4_address: 172.106.0.110
volumes:
earnapp-data:
networks:
default:
driver: bridge
ipam:
driver: default
config:
- subnet: 172.106.0.0/16