Skip to content

Commit b09e1ec

Browse files
authored
Merge pull request #104 from autonomys/fix-prod-compose
chore: make RUST_LOG environment variables been setup by .env
2 parents 258a3b1 + f160f8c commit b09e1ec

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

docker/file-retriever/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ services:
1616
stop_grace_period: 30s
1717
command: rpc --node-rpc-url ws://subspace-node:9944/ws --rpc-listen-on 0.0.0.0:9955 --allow-private-ips --out-connections ${OUT_CONNECTIONS} --pending-out-connections ${PENDING_OUT_CONNECTIONS}
1818
environment:
19-
- RUST_LOG=debug
19+
- RUST_LOG=${RUST_LOG_GATEWAY:-info}
2020
file-retriever:
2121
image: ${FILE_RETRIEVER_DOCKER_TAG}
2222
container_name: file-retriever

docker/object-mapping-indexer/docker-compose.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ services:
1212
- '30433:30433'
1313
- '127.0.0.1:9944:9944'
1414
restart: unless-stopped
15+
environment:
16+
- RUST_LOG=${RUST_LOG_NODE:-info}
1517
command: >
1618
run
1719
--chain ${NETWORK_ID}

0 commit comments

Comments
 (0)