Spaces:
Sleeping
Sleeping
Fix: Use --bind lan instead of --host
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -18,5 +18,5 @@ COPY sync_memory.py /app/sync_memory.py
|
|
| 18 |
ENTRYPOINT []
|
| 19 |
|
| 20 |
# Launch sync script in background, then start Moltbot Gateway
|
| 21 |
-
#
|
| 22 |
-
CMD ["/bin/sh", "-c", "python3 -u /app/sync_memory.py & node dist/index.js gateway --port 7860 --
|
|
|
|
| 18 |
ENTRYPOINT []
|
| 19 |
|
| 20 |
# Launch sync script in background, then start Moltbot Gateway
|
| 21 |
+
# Use --bind lan to bind to 0.0.0.0 (required for Docker/HF Spaces)
|
| 22 |
+
CMD ["/bin/sh", "-c", "python3 -u /app/sync_memory.py & node dist/index.js gateway --port 7860 --bind lan --allow-unconfigured"]
|