-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
60 lines (54 loc) · 1.4 KB
/
docker-compose.dev.yml
File metadata and controls
60 lines (54 loc) · 1.4 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
# Contributor override for local rebuilds.
#
# Usage:
# docker compose -f docker-compose.yml -f docker-compose.dev.yml up --build
#
# Or via make:
# make dev-up
#
# Every Cordum-authored service is re-pinned to a local :dev tag and forced
# through the existing `build:` context. Upstream images (nats, redis) are
# untouched — they should never be rebuilt locally. This override is the
# escape hatch for contributors; the default path (`docker compose up -d`)
# still pulls pre-built images from ghcr.io.
services:
context-engine:
image: cordum/context-engine:dev
build:
context: .
dockerfile: Dockerfile
args:
SERVICE: cordum-context-engine
safety-kernel:
image: cordum/safety-kernel:dev
build:
context: .
dockerfile: Dockerfile
args:
SERVICE: cordum-safety-kernel
scheduler:
image: cordum/scheduler:dev
build:
context: .
dockerfile: Dockerfile
args:
SERVICE: cordum-scheduler
api-gateway:
image: cordum/api-gateway:dev
build:
context: .
dockerfile: Dockerfile
args:
SERVICE: cordum-api-gateway
workflow-engine:
image: cordum/workflow-engine:dev
build:
context: .
dockerfile: Dockerfile
args:
SERVICE: cordum-workflow-engine
dashboard:
image: cordum/dashboard:dev
build:
context: ./dashboard
dockerfile: Dockerfile