-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdocker-compose.yml
43 lines (42 loc) · 988 Bytes
/
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
version: "3"
services:
kernel:
image: sh39sxn/aion-kernel:latest
env_file:
- ./aion-kernel.env
ports:
- "8545:8545"
solo-mining-pool:
image: sh39sxn/aion-solo-mining-pool:latest
env_file:
- ./aion-solo-mining-pool.env
ports:
- "3333:3333"
links:
- kernel
- redis
redis:
container_name: redis
image: redis
ports:
- "6379:6379"
cpu-miner:
image: sh39sxn/aion-miner-cpu:latest
env_file:
- ./aion-cpu-miner.env
links:
- solo-mining-pool
gpu-miner:
image: sh39sxn/aion-miner-gpu:latest
env_file:
- ./aion-gpu-miner.env
links:
- solo-mining-pool
gpu-smartminer:
image: aion:aion_smartminer
env_file:
- ./aion-gpu-smartminer.env
links:
- solo-mining-pool
# use gpu-miner or gpu-smartminer, just uncomment the lines above for the container you don't want to use
# usually smartminer is much faster than the defaut gpu-miner from AION