forked from ancore-org/ancore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.docker.example
More file actions
28 lines (23 loc) · 808 Bytes
/
Copy path.env.docker.example
File metadata and controls
28 lines (23 loc) · 808 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
# Docker Compose Environment Variables
# Copy this file to .env.docker and customize for your local setup
# PostgreSQL Configuration
POSTGRES_USER=postgres
POSTGRES_PASSWORD=ancore
POSTGRES_DB=ancore_indexer
# Indexer Configuration
INDEXER_DATABASE_URL=postgres://postgres:ancore@postgres:5432/ancore_indexer
INDEXER_PROMETHEUS_PORT=9090
INDEXER_LOG_LEVEL=info
# Relayer Configuration
RELAYER_PORT=3000
RELAYER_NODE_ENV=development
# Stellar Network Configuration
# Uncomment and configure for your target network
# STELLAR_NETWORK=testnet
# STELLAR_HORIZON_URL=https://horizon-testnet.stellar.org
# STELLAR_RPC_URL=https://soroban-testnet.stellar.org
# Optional: Custom ports (if defaults conflict)
# POSTGRES_HOST_PORT=5432
# INDEXER_API_PORT=3000
# INDEXER_METRICS_PORT=9090
# RELAYER_HOST_PORT=3001