-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1q
37 lines (34 loc) · 719 Bytes
/
1q
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
version: '3.2'
services:
light_blog:
image: light_blog3
stdin_open: true
tty: true
restart: always
ports:
- 8088: 5000
environment:
PROJECT_NAME: Light_Blog
CONFIG: test
links:
- light_blog_mysql: mysql
- light_blog_mq: rabbitmq
volumes:
- /home/chenbo/Light_Blog/temp/
light_blog_mysql:
image: mysql
environment:
MYSQL_DATABASE: light_blog
MYSQL_PASSWORD: chenbo
MYSQL_USER: root
stdin_open: true
tty: true
restart: always
light_blog_mq:
image: rabbitmq
environment:
RABBITMQ_DEFAULT_USER: chenbo
RABBITMQ_DEFAULT_PASS: chenbo
stdin_open: true
tty: true
restart: always