-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
51 lines (45 loc) · 866 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
51 lines (45 loc) · 866 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
lottor-ui:
container_name: lottor-ui
image: 'lottor/lottor-ui:1.1'
ports:
- '3000:33257'
environment:
- SERVER_TAG=http://127.0.0.1:9666
mysql-auth:
restart: always
image: mysql:5.7
ports:
- "3316:3306"
environment:
- MYSQL_ROOT_PASSWORD=_123456_
- MYSQL_DATABASE=auth
mysql-user:
restart: always
image: mysql:5.7
ports:
- "3306:3306"
environment:
- MYSQL_ROOT_PASSWORD=_123456_
- MYSQL_DATABASE=user
rabbit:
container_name: lottor-rabbit
image: 'rabbitmq:3.6-management'
ports:
- '15672:15672'
- '5672:5672'
consul:
container_name: lottor-consul
image: 'consul:0.8.5'
ports:
- '8500:8500'
- '8300:8300'
mongo:
container_name: lottor-mongo
image: 'mongo:3.2'
ports:
- '27017:27017'
redis:
container_name: lottor-redis
image: 'redis:4'
ports:
- '6379:6379'