forked from mohammad-taheri1/Book-Store-MERN-Stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
54 lines (48 loc) · 1.21 KB
/
docker-compose.yaml
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
# ME_CONFIG_MONGODB_URL : mongodb://root:example@mongo:27017/books-collection # use database service name in place of mongo
version: '3.9'
services:
mongo:
image: mongo:7.0-jammy
container_name: mongo
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
ports:
- "27017:27017"
volumes:
- mongo-data:/data/db
mongo-express:
image: mongo-express
container_name: mongo-express
restart: always
ports:
- 8081:8081
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: example
ME_CONFIG_MONGODB_URL: mongodb://root:example@mongo:27017/
depends_on:
- mongo
# Node.js (Express) service
express-app:
build:
context: ./backend
container_name: backend
ports:
- "5555:5555"
depends_on:
- mongo
- mongo-express
# environment:
# MONGO_URI: mongodb://root:[email protected]:27017/books-collection?authSource=admin
# Frontend service
react-app:
build:
context: ./frontend
container_name: frontend
ports:
- "80:80"
depends_on:
- express-app
volumes:
mongo-data: