-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
46 lines (43 loc) · 938 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
46 lines (43 loc) · 938 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
44
45
46
services:
redis:
image: redis:7-alpine
container_name: war-redis
ports:
- "6379:6379"
volumes:
- redis-data:/data
command: redis-server --appendonly yes
backend:
build:
context: .
dockerfile: apps/backend/Dockerfile
container_name: war-backend
ports:
- "3001:3001"
environment:
- REDIS_URL=redis://redis:6379
- PORT=3001
- NODE_ENV=development
depends_on:
- redis
volumes:
- .:/app
- /app/node_modules
frontend:
build:
context: .
dockerfile: apps/frontend/Dockerfile
container_name: war-frontend
ports:
- "3000:3000"
environment:
- NUXT_PUBLIC_API_URL=http://localhost:3001/graphql
- NUXT_PUBLIC_WS_URL=ws://localhost:3001/graphql
depends_on:
- backend
volumes:
- .:/app
- /app/node_modules
- /app/apps/frontend/.nuxt
volumes:
redis-data: