-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
51 lines (46 loc) · 885 Bytes
/
docker-compose.yml
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
version: '3.8'
services:
backend:
build: ./backend
container_name: backend
# command: sh -c "fastapi dev main.py"
ports:
- "8000:8000"
volumes:
- ./backend:/app
depends_on:
- db
env_file:
- ./backend/.env
networks:
- vintednetwork
frontend:
build: ./frontend
container_name: frontend
ports:
- "3000:3000"
depends_on:
- backend
volumes:
- ./frontend:/app
- /app/node_modules
networks:
- vintednetwork
db:
image: postgres:13
container_name: db
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: myhashedpassword
POSTGRES_DB: vinteddatabase
ports:
- "5433:5432"
volumes:
- pgdata:/var/lib/postgresql/data
networks:
- vintednetwork
networks:
vintednetwork:
driver: bridge
volumes:
pgdata: