Dmitry Beresnev commited on
Commit
07df346
·
1 Parent(s): 02e0757

fix supervisord conf

Browse files
Files changed (2) hide show
  1. Dockerfile +2 -0
  2. supervisord.conf +1 -1
Dockerfile CHANGED
@@ -37,6 +37,8 @@ ENV EXTERNAL_GATEWAY_MANAGED=1
37
  ENV OPENCLAW_STANDARD_UI_PUBLIC_URL=/openclaw/
38
  ENV OPENCLAW_GATEWAY_LOG_PATH=/tmp/openclaw-gateway.log
39
  ENV OPENCLAW_GATEWAY_ERR_LOG_PATH=/tmp/openclaw-gateway.err.log
 
 
40
 
41
  RUN mkdir -p /app/vault /app/.openclaw/state
42
 
 
37
  ENV OPENCLAW_STANDARD_UI_PUBLIC_URL=/openclaw/
38
  ENV OPENCLAW_GATEWAY_LOG_PATH=/tmp/openclaw-gateway.log
39
  ENV OPENCLAW_GATEWAY_ERR_LOG_PATH=/tmp/openclaw-gateway.err.log
40
+ ENV OPENCLAW_DISABLE_BONJOUR=1
41
+ ENV OPENCLAW_DISABLE_MDNS=1
42
 
43
  RUN mkdir -p /app/vault /app/.openclaw/state
44
 
supervisord.conf CHANGED
@@ -13,7 +13,7 @@ stopasgroup=true
13
  killasgroup=true
14
  stdout_logfile=/tmp/openclaw-gateway.log
15
  stderr_logfile=/tmp/openclaw-gateway.err.log
16
- environment=HOME="/root",HOSTNAME="openclaw",COMPUTERNAME="openclaw"
17
 
18
  [program:streamlit]
19
  command=/bin/sh -lc "cd /app && uv run streamlit run app.py --server.address=0.0.0.0 --server.port=8501"
 
13
  killasgroup=true
14
  stdout_logfile=/tmp/openclaw-gateway.log
15
  stderr_logfile=/tmp/openclaw-gateway.err.log
16
+ environment=HOME="/root",HOSTNAME="openclaw",COMPUTERNAME="openclaw",OPENCLAW_DISABLE_BONJOUR="1",OPENCLAW_DISABLE_MDNS="1"
17
 
18
  [program:streamlit]
19
  command=/bin/sh -lc "cd /app && uv run streamlit run app.py --server.address=0.0.0.0 --server.port=8501"