-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
56 lines (52 loc) · 939 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
56 lines (52 loc) · 939 Bytes
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
monerod:
build: .
dockerfile: Dockerfile.monerod
container_name: monerod
user: root
restart: always
volumes:
- ./.bitmonero:/monero/.bitmonero
tty: true
ports:
- 127.0.0.1:18081:18081
monero-wallet-rpc:
build: .
dockerfile: Dockerfile.monero-wallet-rpc
container_name: monero-wallet-rpc
user: root
volumes:
- ./wallet:/wallet
tty: true
links:
- monerod
redis:
image: "redis:alpine"
container_name: redis
restart: always
volumes:
- ./redis-data:/data
pool:
build: .
dockerfile: Dockerfile.pool
container_name: pool
user: root
restart: always
working_dir: /pool
ports:
- 3333:3333
- 5555:5555
- 7777:7777
- 8888:8888
- 8117:8117
links:
- monerod
- redis
- monero-wallet-rpc
nginx:
image: "nginx:mainline-alpine"
container_name: nginx-pool
restart: always
ports:
- 80:80
volumes:
- ./html:/usr/share/nginx/html:ro