-
Notifications
You must be signed in to change notification settings - Fork 138
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (40 loc) · 2 KB
/
Copy pathdocker-compose.yml
File metadata and controls
42 lines (40 loc) · 2 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
# Environment variables:
# - MIDEN_REMOTE_PROVER_URL: remote transaction prover URL. Defaults to the
# bundled miden-remote-prover service at http://tx-prover:50051.
# - MIDEN_VALIDATOR_1_SIGNING_KEY, MIDEN_VALIDATOR_2_SIGNING_KEY, and
# MIDEN_VALIDATOR_3_SIGNING_KEY: private signing keys for the three validators.
# The insecure defaults correspond to the public keys in the genesis config
# in compose/bootstrap.yml and are intended only for local development.
# - MIDEN_VALIDATOR_STORAGE_KEY_EPOCH: hex-encoded 32-byte Golden key epoch.
# - MIDEN_SEED_RPC_URL and MIDEN_SEED_VALIDATOR_1_SIGNING_PUBLIC_KEY through
# MIDEN_SEED_VALIDATOR_3_SIGNING_PUBLIC_KEY: overrides used by the on-demand
# seed service.
# - MIDEN_NODE_IMAGE, MIDEN_VALIDATOR_IMAGE, MIDEN_NTX_BUILDER_IMAGE,
# MIDEN_REMOTE_PROVER_IMAGE, MIDEN_NETWORK_MONITOR_IMAGE,
# MIDEN_BENCHMARK_IMAGE, MIDEN_FAUCET_IMAGE, and MIDEN_NOTE_TRANSPORT_IMAGE:
# container images used by the local network. The core images default to the
# unqualified names built by the Makefile. Optional external images default
# to their pinned versions in the corresponding Compose files.
# - MIDEN_NOTE_TRANSPORT_PLATFORM: platform used by the note transport image.
# Defaults to linux/amd64 because the pinned image is not multi-architecture.
# - OTEL_EXPORTER_OTLP_ENDPOINT: optional additional OTLP/gRPC endpoint. Traces
# are always sent to the bundled collector, which forwards them to this
# endpoint and to Tempo when the telemetry profile is enabled.
# Keep the complete local application discoverable from the root so direct
# `docker compose` commands and profiles do not require additional `-f` flags.
include:
- compose/bootstrap.yml
- compose/validator.yml
- compose/node.yml
- compose/ntx-builder.yml
- compose/tx-prover.yml
- compose/seed.yml
- compose/note-transport.yml
- compose/otel-collector.yml
- compose/router.yml
- compose/faucet.yml
- compose/explorer.yml
- compose/telemetry.yml
- compose/monitor.yml
volumes:
node-data: