-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (40 loc) · 821 Bytes
/
docker-compose.yml
File metadata and controls
42 lines (40 loc) · 821 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
#도커 버전
version: "3"
services:
flly_fe:
image: wjdgusaho/flowerly_fe
build:
dockerfile: DockerFile
context: ./Frontend
container_name: flly_fe
# volumes:
# - ./Frontend:/app
# - /app/node_modules
# - /app/.next
stdin_open: true
# restart: always
expose:
- "3000"
flly_be:
image: wjdgusaho/flowerly_be
build:
dockerfile: DockerFile
context: ./Backend
container_name: flly_be
volumes:
- ./Backend:/app
restart: always
expose:
- "6090"
mariadb:
container_name: mariadb
image: mariadb:11.0.3
volumes:
- /home/ubuntu/mysqlConfig:/var/lib/mysql
ports:
- "3306:3306"
expose:
- "3306"
environment:
- TZ=Asia/Seoul
- MYSQL_ROOT_PASSWORD=flowerlybe-209