-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
40 lines (37 loc) · 997 Bytes
/
compose.yaml
File metadata and controls
40 lines (37 loc) · 997 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
name: arc-docker-quickstart
services:
arc-trust-demo:
image: arc-trust-demo:local
build:
context: ../..
dockerfile: Dockerfile
target: arc-trust-demo
environment:
ARC_SERVICE_TOKEN: ${ARC_SERVICE_TOKEN:-demo-token}
ports:
- "${ARC_TRUST_PORT:-8940}:8940"
volumes:
- arc_demo_state:/var/lib/arc
healthcheck:
test: ["CMD-SHELL", "wget -q -O - http://127.0.0.1:8940/health >/dev/null 2>&1"]
interval: 5s
timeout: 3s
retries: 20
start_period: 5s
arc-mcp-demo:
image: arc-mcp-demo:local
build:
context: ../..
dockerfile: Dockerfile
target: arc-mcp-demo
environment:
ARC_AUTH_TOKEN: ${ARC_AUTH_TOKEN:-demo-token}
ARC_CONTROL_URL: http://arc-trust-demo:8940
ARC_CONTROL_TOKEN: ${ARC_SERVICE_TOKEN:-demo-token}
ports:
- "${ARC_EDGE_PORT:-8931}:8931"
depends_on:
arc-trust-demo:
condition: service_healthy
volumes:
arc_demo_state: