-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
32 lines (31 loc) · 888 Bytes
/
docker-compose.yml
File metadata and controls
32 lines (31 loc) · 888 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
version: "3.9"
services:
rebased-stardust-indexer:
build:
context: .
dockerfile: Dockerfile
args:
- GIT_REVISION
- BUILD_DATE
- PROFILE=release
image: rebased-stardust-indexer:latest
env_file:
- .env
ports:
- "3000:3000"
- "3001:3001"
volumes:
- ./output:/app/output
command: >
rebased-stardust-indexer
start-indexer
--log-level ${LOG_LEVEL}
--rest-api-address ${REST_API_SOCKET_ADDRESS}
--pool-size ${DB_POOL_SIZE}
--connection-timeout-secs ${DB_CONNECTION_TIMEOUT_SECS}
--download-queue-size ${DOWNLOAD_QUEUE_SIZE}
--checkpoint-processing-batch-data-limit ${CHECKPOINT_PROCESSING_BATCH_DATA_LIMIT}
--remote-store-url ${REMOTE_STORE_URL}
--package-id ${PACKAGE_ID}
--enable-wal
--metrics-address ${METRICS_SOCKET_ADDRESS}