-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdocker-compose.yml
94 lines (88 loc) · 1.9 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
version: '3'
services:
nginx:
container_name: nginx
build:
context: nginx
environment:
NGINX_HOST: magiclobster.de
networks:
- crypto-pool-net
aeon-redis:
build:
context: redis
container_name: aeon-redis
volumes:
- redis-data-aeon:/data
networks:
- crypto-pool-net
aeon-wallet:
build:
context: wallet
args:
- GIT_TAG=v0.9.14.0
- GIT_REPO=https://github.com/aeonix/aeon.git
- WALLET_BIN=simplewallet
- WALLET_DAEMON_BIN=aeond
container_name: aeon-wallet
environment:
- WALLET_NAME=pool.bin
- WALLET_PASSWORD=""
- WALLET_PORT=11188
- WALLETD_PORT=11181
volumes:
- wallet-data-aeon:/wallet
networks:
- crypto-pool-net
aeon-pool:
build:
context: pool
container_name: aeon-pool
depends_on:
- aeon-redis
- aeon-wallet
environment:
- POOL_WALLET_ADDRESS=wallet
- POOL_API_PASSWORD=pass
- POOL_HOST=aeon.magiclobster.de
- POOL_API=https:\/\/aeon.magiclobster.de:8119
networks:
- crypto-pool-net
haproxy:
build:
context: haproxy
container_name: haproxy
depends_on:
- aeon-pool
- nginx
ports:
- "80:80"
- "443:443"
- "3333:3333"
- "3334:3334"
- "3335:3335"
- "3336:3336"
- "8117:8117"
- "8119:8119"
- "9999:9999"
volumes:
- haproxy-data:/etc/letsencrypt
environment:
- HAPROXY_STATS_PASSWORD=pass
- AEON_WEB_DOMAIN=aeon.magiclobster.de
- AEON_PORT_LOW=3333
- AEON_PORT_MED=3334
- AEON_PORT_HIG=3335
- AEON_PORT_EXT=3336
- AEON_API_PORT=8119
networks:
- crypto-pool-net
volumes:
wallet-data-aeon:
redis-data-aeon:
pool-data-aeon:
haproxy-data:
networks:
crypto-pool-net:
external: true