-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
59 lines (54 loc) · 1.17 KB
/
Copy pathdocker-compose.yml
File metadata and controls
59 lines (54 loc) · 1.17 KB
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
52
53
54
55
56
57
58
services:
backend:
build:
context: ./backend
dockerfile: Dockerfile
volumes:
- ./backend/app:/app
ports:
- "8000:8000"
environment:
- DATABASE_URL=postgresql://postgres:postgres@db:5432/discgolf
- ENVIRONMENT=development
depends_on:
- db
restart: always
command: uvicorn main:app --host 0.0.0.0 --port 8000 --reload
networks:
- fastputt-network
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
volumes:
- ./frontend:/app
- /app/node_modules
ports:
- "8085:8085" # Changed from "8085:8080"
environment:
- NODE_ENV=development
- CHOKIDAR_USEPOLLING=true
depends_on:
- backend
restart: always
command: npm run serve
networks:
- fastputt-network
db:
image: postgres:14-alpine
volumes:
- postgres_data:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=postgres
- POSTGRES_USER=postgres
- POSTGRES_DB=discgolf
ports:
- "5432:5432"
restart: always
networks:
- fastputt-network
volumes:
postgres_data:
networks:
fastputt-network:
driver: bridge