-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
54 lines (47 loc) · 1.09 KB
/
docker-compose.yml
File metadata and controls
54 lines (47 loc) · 1.09 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
version: '3'
services:
# db:
# image: mysql:8
# container_name: avocado_db
# restart: always
# ports:
# - "3306:3306"
# env_file: ./backend/docker-backend.env
# volumes:
# - mysql_data:/var/lib/mysqla
frontend:
build: ./frontend
ports:
- "3000:3000"
volumes:
- ./frontend:/app
- /app/node_modules
# backend:
# build: ./backend
# ports:
# - "8080:8080"
# volumes:
# - ./backend:/app
# redis:
# image: redis:latest
# ports:
# - "8379:6379"
# nginx:
# image: nginx:latest
# ports:
# - "443:443"
# - "80:80"
# volumes:
# - ./nginx/nginx.conf:/etc/nginx/nginx.conf
# - ./nginx.conf:/etc/nginx/nginx.conf
# - ./certs:/etc/letsencrypt
# 로컬 테스트 때 주석 해제
# openvidu:
# image: openvidu/openvidu-dev:2.28.0
# container_name: avocado_openvidu
# ports:
# - "4443:4443"
# environment:
# - OPENVIDU_SECRET=ssafy
# volumes:
# mysql_data: