-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
106 lines (98 loc) · 1.79 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
95
96
97
98
99
100
101
102
103
104
105
106
version: '3.5'
services:
web:
image: nginx
volumes:
- ./Ripple-NGINX/:/etc/nginx/conf.d/
- ./Certificates/:/src/certificates/
links:
- lets
- pep.py
- hanayo
- rippleapi
depends_on:
- lets
- pep.py
- hanayo
- rippleapi
ports:
- 80:80
- 443:443
restart: on-failure
hanayo:
image: hanayo
build: ./Ripple-Hanayo
volumes:
- ./data/hanayo/:/ripple
- ./data/avatars/:/avatars
links:
- db
- redis
- rippleapi
depends_on:
- db
- redis
- rippleapi
restart: on-failure
rippleapi:
image: rippleapi
build: ./Ripple-API
volumes:
- ./data/rippleapi/:/ripple/
links:
- db
- redis
depends_on:
- db
- redis
restart: on-failure
pep.py:
image: pep.py
build: ./Ripple-PEP.PY
volumes:
- ./data/pep.py/:/ripple
links:
- db
- redis
depends_on:
- db
- redis
restart: on-failure
ports:
- "6667:6667"
lets:
image: lets
build: ./Ripple-LETS
volumes:
- ./data/lets/:/ripple
- ./data/lets/common:/ripple-src/common
links:
- db
- redis
depends_on:
- db
- redis
restart: on-failure
# Datacore
redis:
image: redis
volumes:
- ripple_redis_vol:/data
restart: on-failure
expose:
- 6379
db:
container_name: db
image: mysql:5.7.23
command: --default-authentication-plugin=mysql_native_password
volumes:
- ripple_mysql_data:/var/lib/mysql
- ./ripple.sql:/docker-entrypoint-initdb.d/ripple.sql
restart: on-failure
environment:
- MYSQL_ROOT_PASSWORD=pass
expose:
- 3306
volumes:
ripple_mysql_data:
ripple_redis_vol: