-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
78 lines (71 loc) · 2.28 KB
/
docker-compose.yml
File metadata and controls
78 lines (71 loc) · 2.28 KB
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
version: "3"
services:
mysql:
image: cualestunombre/operation:mysql
restart: unless-stopped
container_name: app_mysql
volumes:
- ./mysql/sqls/:/docker-entrypoint-initdb.d/
- ./mysql/data:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: myapp
TZ: "Asia/Seoul" # 대한민국 표준시로 시간대 설정
authentication:
image: cualestunombre/operation:authentication
container_name: app_authentication
volumes:
- ./authentication/upload/image:/Users/woo/src/app/authentication/upload/image
- ./authentication/logs:/Users/woo/src/app/authentication/logs
environment:
TZ: "Asia/Seoul" # 대한민국 표준시로 시간대 설정
ports:
- "8030:8030"
- "8080:8080"
redis:
image: cualestunombre/operation:redis
container_name: app_redis
environment:
TZ: "Asia/Seoul" # 대한민국 표준시로 시간대 설정
mongodb:
restart: unless-stopped
image: cualestunombre/operation:mongodb
container_name: app_mongodb
volumes:
- ./mongodb/data:/data/db
- ./mongodb/tmp:/tmp
environment:
TZ: "Asia/Seoul" # 대한민국 표준시로 시간대 설정
community:
image: cualestunombre/operation:community
container_name: app_community
volumes:
- ./community/upload/image:/Users/woo/src/app/community/upload/image
- ./community/logs:/Users/woo/src/app/community/logs
environment:
TZ: "Asia/Seoul" # 대한민국 표준시로 시간대 설정
ports:
- "8040:8040"
- "8081:8081"
socket:
image: cualestunombre/operation:socket
container_name: app_socket
volumes:
- ./socket/logs:/Users/woo/src/app/socket/logs
environment:
TZ: "Asia/Seoul" # 대한민국 표준시로 시간대 설정
rabbit:
image: cualestunombre/operation:rabbit
container_name: app_rabbit
environment:
TZ: "Asia/Seoul"
nginx:
image: cualestunombre/operation:nginx
container_name: app_nginx
restart: always # 죽으면 항상 살아 있게 함
ports:
- "443:443"
environment:
TZ: "Asia/Seoul" # 대한민국 표준시로 시간대 설정
volumes:
- /etc/letsencrypt/live/beatmate.zapto.org:/etc/letsencrypt/live/beatmate.zapto.org