-
Notifications
You must be signed in to change notification settings - Fork 5
/
docker-compose.yml
44 lines (42 loc) · 1.08 KB
/
docker-compose.yml
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
# 맛이 어떤데?
version: "3"
services:
# react-app-nolshimung:
# image: wnsrb003/react-app-nolshimung:latest
# build: ./FE
# stdin_open: true
# ports:
# - "3000:3000"
# - "443:3000"
# networks:
# - mern-app
api-server-nolshimung:
image: wnsrb003/api-server-nolshimung:latest
restart: always
volumes:
- ./ssl:/app/ssl
ports:
- "8443:8443"
- "7889:7889"
- "3001:3001"
- "3003:3003"
redis_boot:
image: redis
restart: always
mongo:
image: mongo
restart: always
ports:
- "20003:20003"
command: mongod --port 20003
# networks:
# - mern-app
volumes:
- ./mongo-data:/data/db
# environment:
# # # MongoDB 계정 및 패스워드 설정 옵션
# MONGO_INITDB_ROOT_USERNAME: ${mongo_user}
# MONGO_INITDB_ROOT_PASSWORD: ${mongo_passwd}
# networks:
# mern-app:
# driver: bridge