-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (40 loc) · 1.08 KB
/
docker-compose.yml
File metadata and controls
41 lines (40 loc) · 1.08 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
# Copyright (c) 2026 Joseph Verdicchio and EvidenceOS Contributors
# SPDX-License-Identifier: Apache-2.0
services:
evidenceos:
build:
context: .
dockerfile: Dockerfile
image: evidenceos:local
ports:
- "50051:50051"
- "8081:8081"
- "9464:9464"
environment:
EVIDENCEOS_KEY_PROVIDER: "file"
EVIDENCEOS_HMAC_KEYS: "default:6368616e67652d6d652d64656661756c742d736563726574,rotate-2026q2:6368616e67652d6d652d726f74617465642d736563726574"
volumes:
- ./ops/data:/data
- ./ops/certs:/certs:ro
- ./ops/keys:/data/keys:rw
- ./ops/oracles:/oracles:ro
command:
[
"--listen",
"0.0.0.0:50051",
"--data-dir",
"/data",
"--oracle-dir",
"/oracles",
"--tls-cert",
"/certs/server.crt",
"--tls-key",
"/certs/server.key",
"--mtls-client-ca",
"/certs/ca.crt",
"--require-client-cert",
"--preflight-http-listen",
"0.0.0.0:8081",
"--preflight-require-bearer-token",
"change-me-preflight-token"
]