-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy path.env.docker-compose
More file actions
60 lines (49 loc) · 1.5 KB
/
.env.docker-compose
File metadata and controls
60 lines (49 loc) · 1.5 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
## Main variables
NETWORK=mainnet
# Available profiles: token-registry, indexes
# To enable index creation service, add: COMPOSE_PROFILES=token-registry,indexes
COMPOSE_PROFILES=token-registry
## Postgres Variables
POSTGRES_VERSION=17.2-alpine
POSTGRES_PORT=5432
DB_PATH=postgres14-data
## Cardano Node Variables
CARDANO_NODE_HOST=cardano-node
CARDANO_NODE_PORT=3001
CARDANO_NODE_VERSION=10.7.1
CARDANO_NODE_DIR=node-ipc
CARDANO_NODE_DB=node-db
## Mithril variables
MITHRIL_SYNC=true
MITHRIL_VERSION=2603.1
SNAPSHOT_DIGEST=latest
# if not set standard values will be used
AGGREGATOR_ENDPOINT=
# if not set standard values will be used
GENESIS_VERIFICATION_KEY=
ANCILLARY_VERIFICATION_KEY=
## Ogmios Variables
OGMIOS_VERSION=v6.14.0
OGMIOS_PORT=1337
## DB Sync Variables
# RESTORE_SNAPSHOT=path/to/snapshot/tgz
CARDANO_DB_SYNC_VERSION=13.7.0.4
CARDANO_DB_SYNC_DIR=db-sync-data
## Hasura Variables
HASURA_PORT=8090
CARDANO_GRAPHQL_VERSION=8.5.2
## Token Registry Variables
TOKEN_REGISTRY_VERSION=1.5.0
TOKEN_REGISTRY_PORT=8080
CIP_QUERY_PRIORITY=CIP_68,CIP_26
## Background Variables
LOGGER_MIN_SEVERITY=info
METADATA_SERVER_URI=http://token-metadata-registry:${TOKEN_REGISTRY_PORT}
CHAIN_FOLLOWER_START_SLOT=0
CHAIN_FOLLOWER_START_ID=
## Server Variables
API_PORT=3100
## Index Service Variables (requires 'indexes' in COMPOSE_PROFILES)
# Minimum number of blocks to sync before creating indexes (default: 1000)
# Set higher for production (e.g., 100000) to avoid creating indexes on small datasets
INDEX_MIN_BLOCK_COUNT=1000