-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
76 lines (63 loc) · 1.47 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
version: '2'
services:
nginx-proxy:
image: jwilder/nginx-proxy
container_name: nginx-proxy
privileged: true
ports:
- 80:80
- 443:443
volumes:
- ./docker-compose.d/certs:/etc/nginx/certs:ro
- ./docker-compose.d/htpasswd:/etc/nginx/htpasswd
- /etc/nginx/vhost.d
- /usr/share/nginx/html
- /var/run/docker.sock:/tmp/docker.sock:ro
restart: always
insight-mona:
image: monacoex/insight:monacoin
environment:
VIRTUAL_HOST: mona.monacoin.ml
VIRTUAL_PORT: 3001
restart: always
ports:
- 9401:9401
volumes:
- insight_mona_data:/home/node/insight/data
insight-yaju:
build: ./yaju
environment:
VIRTUAL_HOST: yaju.monacoin.ml
VIRTUAL_PORT: 8100
restart: always
ports:
- 24401:24401
volumes:
- insight_yaju_data:/root/
insight-koto:
build: ./koto
environment:
VIRTUAL_HOST: koto.monacoin.ml
VIRTUAL_PORT: 3001
restart: always
volumes:
- insight_koto_data:/home/koto/insight/data
js-ipfs:
image: ipfs/js-ipfs
environment:
VIRTUAL_HOST: js-ipfs.monacoin.ml
VIRTUAL_PORT: 9090
go-ipfs:
image: ipfs/go-ipfs
environment:
VIRTUAL_HOST: go-ipfs.monacoin.ml
VIRTUAL_PORT: 8080
volumes:
- go_ipfs_data
volumes:
insight_yaju_data:
insight_neet_data:
insight_mona_data:
insight_koto_data:
insight_ltc_data:
go_ipfs_data: