-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
43 lines (39 loc) · 871 Bytes
/
docker-compose.yml
File metadata and controls
43 lines (39 loc) · 871 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
version: "3.9"
services:
db:
image: postgres
volumes:
- ./data/db:/var/lib/postgresql/data
environment:
- POSTGRES_DB=postgres
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
web:
image: kaustubhnair/mindnotesbackend
build:
context: ./backend
command: python manage.py runserver 0.0.0.0:8000
volumes:
- ./backend:/code
- ./logs:/code/logs
ports:
- "8000:8000"
depends_on:
- db
frontend:
image: kaustubhnair/mindnotesfrontend
build:
context: ./frontend
command: ["npm", "start"]
volumes:
- ./frontend:/app/frontend
- ./frontend/node_modules:/app/frontend/node_modules
ports:
- "3000:3000"
nginx:
image: kaustubhnair/mindnotesnginx
restart: always
build:
context: ./nginx
ports:
- "80:80"