-
Notifications
You must be signed in to change notification settings - Fork 61
/
docker-compose.yml
282 lines (263 loc) · 9.34 KB
/
docker-compose.yml
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
#######################################################################
# File name : docker-compose.yml
# Author : Olivier Galand (31/12/2021)
# Author email : galand.olivier.david@gmail.com
# Project : CashFactory
# Project repository : https://github.com/OlivierGaland/CashFactory
#
# Docker-compose file of CashFactory
#######################################################################
version: '3.5'
services:
#Start of Portainer + Webserver section :
# Web GUI with quicklinks to apps dashboards and help : connect to your device port 80 (Webserver)
# Container management and monitoring : connect to your device port 9000 (Portainer)
Webserver:
image: busybox
command: sh -c "cp -R /app/* / && httpd -f -p 8000"
volumes:
- ./www:/app
ports:
- 80:8000
restart: always
networks:
default:
ipv4_address: 172.106.0.10
Portainer:
image: portainer/portainer-ce:latest
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- portainer_data:/data
ports:
- 8000:8000
- 9000:9000
- 9443:9443
restart: always
networks:
default:
ipv4_address: 172.106.0.11
#End of Portainer + Webserver section
#Start of Earnapp section (remove this if Earnapp not wanted)
# variables to define in .env file :
# EARNAPP_DEVICE_ID : Your node id : sdk-node-<md5sum>
# <md5sum> is a 32 char string containing a-z and 0-9 range :
# ex : Easy way to generate one : echo "random string" | md5sum
# This will print 9f33ffbb8a9dcedb28ea909775a6b0d3 -
# In that case use : sdk-node-9f33ffbb8a9dcedb28ea909775a6b0d3
Earnapp:
depends_on:
- Portainer
- Webserver
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
#End of Earnapp section
#Start of HoneyGain section (remove this if HoneyGain not wanted)
# variables to define in .env file :
# HONEYGAIN_EMAIL : Your Honeygain account email
# HONEYGAIN_PASSWD : Your Honeygain account password
# DEVICE_NAME : This computer name (for display on dashboard)
Honeygain:
depends_on:
- Portainer
- Webserver
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
#End of HoneyGain section
#Start of IproyalPawns section (remove this if IproyalPawns not wanted)
# variables to define in .env file :
# IPROYALPAWNS_EMAIL : Your IproyalPawns account email
# IPROYALPAWNS_PASSWD : Your IproyalPawns account password
# DEVICE_NAME : This computer name (for display on dashboard)
IproyalPawns:
depends_on:
- Portainer
- Webserver
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
#End of IproyalPawns section
#Start of Peer2profit section (remove this if Peer2profit not wanted)
# variables to define in .env file :
# PEER2PROFIT_EMAIL : Your Peer2profit account email
Peer2profit:
depends_on:
- Portainer
- Webserver
image: enwaiax/peer2profit:latest
restart: always
environment:
- email=$PEER2PROFIT_EMAIL
- use_proxy=false
networks:
default:
ipv4_address: 172.106.0.50
#End of Peer2profit section
#Start of Packetstream section (remove this if Packetstream not wanted)
# variables to define in .env file :
# PACKETSTREAM_CID : Your Packetstream CID (available in packetstream dashboard)
Packetstream_PsClient:
depends_on:
- Portainer
- Webserver
image: packetstream/psclient:latest
restart: always
environment:
- CID=$PACKETSTREAM_CID
networks:
default:
ipv4_address: 172.106.0.60
Packetstream_Watchtower:
depends_on:
- Portainer
- Webserver
- Packetstream_PsClient
image: containrrr/watchtower
command: --cleanup --include-stopped --revive-stopped --interval 60 --scope PacketStream ${_COMPOSE_PROJECT_NAME}_Packetstream_PsClient_${_COMPOSE_PROJECT_STACK_ID}
labels:
- com.centurylinklabs.watchtower.scope=PacketStream
volumes:
- /var/run/docker.sock:/var/run/docker.sock
restart: always
networks:
default:
ipv4_address: 172.106.0.61
#End of Packetstream section
#Start of Bitping section (remove this if Bitping not wanted)
Bitping:
depends_on:
- Portainer
- Webserver
image: bitping/bitping-node:latest
restart: always
volumes:
- ./data/bitping:/root/.bitping
networks:
default:
ipv4_address: 172.106.0.70
#End of Bitping section
#Start of TraffMonetizer section (remove this if TraffMonetizer not wanted)
# variables to define in .env file :
# TRAFFMONETIZER_TOKEN : Your application token (available in TraffMonetizer dashboard)
TraffMonetizer:
depends_on:
- Portainer
- Webserver
image: traffmonetizer/cli_v2:latest
restart: always
command: start accept --token ${TRAFFMONETIZER_TOKEN}
networks:
default:
ipv4_address: 172.106.0.80
#End of Packetstream section
#Start of Repocket section (remove this if Repocket not wanted)
# variables to define in .env file :
# RP_EMAIL : Your application mail
# RP_API_KEY : Your application api key (available in repocket dashboard)
Repocket:
depends_on:
- Portainer
- Webserver
image: repocket/repocket:latest
restart: always
environment:
- RP_EMAIL
- RP_API_KEY
networks:
default:
ipv4_address: 172.106.0.90
#End of Repocket section
#Start of Proxylite section (remove this if Proxylite not wanted)
# variables to define in .env file :
# PROXYLITE_USER_ID : Your application use id (available in proxylite dashboard)
Proxylite:
depends_on:
- Portainer
- Webserver
image: proxylite/proxyservice:latest
restart: always
environment:
- USER_ID=$PROXYLITE_USER_ID
networks:
default:
ipv4_address: 172.106.0.100
#End of Proxylite section
#Start of Proxyrack section (remove this if Proxyrack not wanted)
# variables to define in .env file :
# PROXYRACK_HOST_UUID : Your host UUID (random string), you can generate it using the command : cat /dev/urandom | LC_ALL=C tr -dc 'A-F0-9' | dd bs=1 count=64 2>/dev/null
Proxyrack:
depends_on:
- Portainer
- Webserver
image: proxyrack/pop:latest
restart: always
environment:
- UUID=$PROXYRACK_HOST_UUID
networks:
default:
ipv4_address: 172.106.0.110
#End of Proxyrack section
#Start of Cloudcollab section (remove if not wanted) => currently under evaluation by dev, seems not working well
# Cloudcollab:
# depends_on:
# - Portainer
# - Webserver
# image: cloudcollabapp/peer:latest
# restart: always
# networks:
# default:
# ipv4_address: 172.106.0.120
#End of Cloudcollab section
#Start of EarnFm section (remove this if EarnFm not wanted)
# variables to define in .env file :
# EARNFM_APIKEY : Your API key (available in earnfm dashboard -> more)
EarnFm_Client:
depends_on:
- Portainer
- Webserver
image: earnfm/earnfm-client:latest
restart: always
environment:
- EARNFM_TOKEN=$EARNFM_APIKEY
networks:
default:
ipv4_address: 172.106.0.130
EarnFm_Watchtower:
depends_on:
- Portainer
- Webserver
- EarnFm_Client
image: containrrr/watchtower
command: --cleanup --include-stopped --revive-stopped --interval 60 --scope EarnFm ${_COMPOSE_PROJECT_NAME}_EarnFm_Client_${_COMPOSE_PROJECT_STACK_ID}
labels:
- com.centurylinklabs.watchtower.scope=EarnFm
volumes:
- /var/run/docker.sock:/var/run/docker.sock
restart: always
networks:
default:
ipv4_address: 172.106.0.131
#End of EarnFm section
volumes:
portainer_data:
earnapp-data:
networks:
default:
driver: bridge
ipam:
driver: default
config:
- subnet: 172.106.0.0/16