-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathdocker-compose.dev.yaml
More file actions
39 lines (37 loc) · 1023 Bytes
/
Copy pathdocker-compose.dev.yaml
File metadata and controls
39 lines (37 loc) · 1023 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
services:
app:
build:
context: .
dockerfile: Dockerfile
image: dashwise:dev
container_name: dashwise-app-live
command: sh -lc "bun install --frozen-lockfile && bun run dev"
ports:
- "3000:3000"
- "5173:5173"
- "8090:8090"
env_file:
- .env.dev
volumes:
- .:/app
- app-node-modules:/app/node_modules
- backend-node-modules:/app/apps/backend/node_modules
- web-node-modules:/app/apps/web/node_modules
- integrationskit-node-modules:/app/packages/integrationskit/node_modules
- ./pocketbase/pb_data:/app/pocketbase/pb_data
- ./pocketbase/migrations:/app/pocketbase/migrations
networks:
- dashwise-default
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "-qO-", "http://127.0.0.1:3000/health"]
interval: 30s
timeout: 5s
retries: 3
networks:
dashwise-default:
volumes:
app-node-modules:
backend-node-modules:
web-node-modules:
integrationskit-node-modules: