-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
48 lines (43 loc) · 931 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
48 lines (43 loc) · 931 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
43
44
45
46
47
48
version: '3'
services:
mongodb:
image: mongo:latest
container_name: mongodb_container
ports:
- "27017:27017"
environment:
- MONGO_INITDB_ROOT_USERNAME=root
- MONGO_INITDB_ROOT_PASSWORD=pass
volumes:
- mongodb_data:/data/db
server:
build:
context: ./server
dockerfile: Dockerfile
ports:
- "4000:4000"
environment:
NODE_ENV: production
DB_STRING: mongodb://root:pass@mongodb:27017/mydatabase
PORT: 4000
depends_on:
- mongodb
volumes:
- ./server:/usr/src/app
- /usr/src/app/node_modules/
front-end:
build:
context: ./front
dockerfile: Dockerfile
ports:
- "3000:3000"
environment:
NODE_ENV: production
NEXT_PUBLIC_API_URL: "http://localhost:4000"
depends_on:
- server
volumes:
- ./front:/app
- /app/node_modules/
volumes:
mongodb_data: