-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (38 loc) · 915 Bytes
/
docker-compose.yml
File metadata and controls
41 lines (38 loc) · 915 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
services:
client:
build:
context: ./packages/frontend
dockerfile: Dockerfile
image: ghcr.io/cableship/chart-sentinel-client:dev
ports:
- "3000:3000"
volumes:
- ./packages/frontend:/app
- ./packages/backend/docs:/app/docs
- /app/packages/frontend/node_modules
depends_on:
- api
api:
build:
context: ./packages/backend
dockerfile: Dockerfile
image: ghcr.io/cableship/chart-sentinel-api:dev
env_file:
- .env
ports:
- "8080:8080"
- "8081:8081"
environment:
- KUBECONFIG=/.kube/${KUBECONFIG_FILE:-config}
- GO_ENV=development
volumes:
- ${KUBECONFIG_DIR:-~/.kube/}:/.kube/:ro
- ./packages/backend:/app
redis:
image: public.ecr.aws/docker/library/redis:7.4.2-alpine
redis-ui:
image: redis/redisinsight:latest
ports:
- 5540:5540
volumes:
- /data