Skip to content

Commit 63b085b

Browse files
committed
fix rust log env
1 parent e7da297 commit 63b085b

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

compose.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
11
services:
22
# Compute Node
33
compute:
4-
image: "firstbatch/dkn-compute-node:latest"
5-
# build: "./" # use this one instead if you want to build locally
4+
# image: "firstbatch/dkn-compute-node:latest"
5+
build: "./" # use this one instead if you want to build locally
66
environment:
7+
# Dria
78
DKN_WALLET_SECRET_KEY: ${DKN_WALLET_SECRET_KEY}
89
DKN_ADMIN_PUBLIC_KEY: ${DKN_ADMIN_PUBLIC_KEY}
910
DKN_MODELS: ${DKN_MODELS}
10-
RUST_LOG: ${RUST_LOG-none,dkn_compute=info}
1111
DKN_P2P_LISTEN_ADDR: ${DKN_P2P_LISTEN_ADDR}
1212
DKN_RELAY_NODES: ${DKN_RELAY_NODES}
1313
DKN_BOOTSTRAP_NODES: ${DKN_BOOTSTRAP_NODES}
14+
RUST_LOG: ${RUST_LOG:-none,dkn_compute=info}
15+
# Api Keys
1416
OPENAI_API_KEY: ${OPENAI_API_KEY}
1517
SERPER_API_KEY: ${SERPER_API_KEY}
1618
JINA_API_KEY: ${JINA_API_KEY}
19+
# Ollama
1720
OLLAMA_HOST: ${OLLAMA_HOST}
1821
OLLAMA_PORT: ${OLLAMA_PORT}
1922
OLLAMA_AUTO_PULL: ${OLLAMA_AUTO_PULL:-true}

0 commit comments

Comments
 (0)