forked from ctrlplanedev/ctrlplane
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.local.yaml
More file actions
38 lines (33 loc) · 895 Bytes
/
docker-compose.local.yaml
File metadata and controls
38 lines (33 loc) · 895 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
# Override for local development - builds from source (native platform)
# Usage: docker compose -f docker-compose.yaml -f docker-compose.local.yaml up --build
services:
migrations:
image: ctrlplane/migrations:local
platform: ""
build:
context: .
dockerfile: packages/db/Dockerfile
api:
image: ctrlplane/api:local
platform: ""
build:
context: .
dockerfile: apps/api/Dockerfile
workspace-engine:
image: ctrlplane/workspace-engine:local
platform: ""
build:
context: ./apps/workspace-engine
dockerfile: Dockerfile
workspace-engine-router:
image: ctrlplane/workspace-engine-router:local
platform: ""
build:
context: ./apps/workspace-engine-router
dockerfile: Dockerfile
web:
image: ctrlplane/web:local
platform: ""
build:
context: .
dockerfile: apps/web/Dockerfile