forked from klept0/MS-Rewards-Farmer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
40 lines (37 loc) · 1.14 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
services:
rewards-farmer1:
image: farmer_ms:latest
container_name: farmer1
shm_size: 2gb
command: bash -c 'python3 main.py <args of bot like (no write -v) -t >'
volumes:
- ./accounts.json:/app/accounts.json
- ./logs1:/app/logs
restart: 'no'
rewards-farmer2:
image: farmer_ms:latest
container_name: farmer2
shm_size: 2gb
command: bash -c 'python3 main.py <args of bot like (no write -v) -t >'
volumes:
- ./accounts2.json:/app/accounts.json
- ./logs2:/app/logs
restart: 'no'
rewards-farmer3:
image: farmer_ms:latest
container_name: farmer3
shm_size: 2gb
command: bash -c 'python3 main.py <args of bot like (no write -v) -t >'
volumes:
- ./accounts3.json:/app/accounts.json
- ./logs3:/app/logs
restart: 'no'
rewards-farmer4:
image: farmer_ms:latest
container_name: farmer4
shm_size: 2gb
command: bash -c 'python3 main.py <args of bot like (no write -v) -t >'
volumes:
- ./accounts4.json:/app/accounts.json
- ./logs4:/app/logs
restart: 'no'