forked from vedanshjainvj/Job-Hive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
39 lines (35 loc) · 792 Bytes
/
compose.yaml
File metadata and controls
39 lines (35 loc) · 792 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
services:
client:
image: job-hive-client
container_name: client
ports:
- "5173:5173"
depends_on:
- server
server:
image: job-hive-server
container_name: server
ports:
- "8000:8000"
environment:
- SECRET_KEY=12345
- MONGODB_URI=mongodb://db/jobhive
- PORT=8000
- CLOUDINARY_CLOUD_NAME=your-cloud-name
- CLOUDINARY_API_KEY=your-api-key
- CLOUDINARY_API_SECRET=your-api-secret
- EMAIL=your-email
- PASSWORD=your-password
- BASE_URL=http://localhost
depends_on:
- db
db:
image: mongo
container_name: mongodb
ports:
- "27017:27017"
volumes:
- mongodbdata:/data/db
volumes:
mongodbdata:
driver: local