forked from uwblueprint/starter-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (40 loc) · 763 Bytes
/
docker-compose.yml
File metadata and controls
42 lines (40 loc) · 763 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
version: "3.7"
services:
frontend:
build:
context: ./frontend
dockerfile: frontend.Dockerfile
volumes:
- ./frontend:/app
- /app/node_modules
ports:
- 3000:3000
environment:
- CHOKIDAR_USEPOLLING=true
backend:
restart: always
build:
context: ./backend
dockerfile: backend.Dockerfile
ports:
- 5000:5000
dns:
- 8.8.8.8
volumes:
- ./backend:/app
env_file:
- .env
depends_on:
- db
db:
image: postgres:12-alpine
ports:
- 5432:5432
volumes:
- postgres_data:/var/lib/postgresql/data/
environment:
POSTGRES_DB: "startercode"
POSTGRES_PASSWORD: "test"
POSTGRES_USER: "test"
volumes:
postgres_data: