-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathdocker-compose.dev.yaml
More file actions
47 lines (46 loc) · 914 Bytes
/
docker-compose.dev.yaml
File metadata and controls
47 lines (46 loc) · 914 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
47
version: '3.8'
services:
cuelake-ui:
build:
context: ./ui
dockerfile: Dockerfile.dev
ports:
- "3000:3000"
stdin_open: true
network_mode: "host"
volumes:
- ./ui:/app
- /app/node_modules
cuelake-api:
build:
context: ./api
dockerfile: Dockerfile.dev
environment:
- ENVIRONMENT=dev
ports:
- "8000:8000"
stdin_open: true
depends_on:
- postgres
- redis
network_mode: "host"
volumes:
- ./api:/code
- C:/Users/Prabhat/laker-private/.kube:/.kube
postgres:
image: postgres:13
ports:
- "5432:5432"
environment:
- PGDATA=/pg_data
- POSTGRES_DB=cuelake
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
volumes:
- /pg_data
network_mode: "host"
redis:
ports:
- "6379:6379"
image: "redis:alpine"
network_mode: "host"