Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,14 @@ services:
volumes:
- ${OPENCLAW_CONFIG_DIR}:/home/node/.openclaw
- ${OPENCLAW_WORKSPACE_DIR}:/home/node/.openclaw/workspace
# Note: network_mode: "service:openclaw-gateway" run CLI in the same network namespace as the gateway so CLI can reach it via localhost (127.0.0.1) and avoid localhost/Docker DNS issues.
# Under this network_mode, the CLI container must not expose ports or be addressed by service name.
# Remove this line only if you intend to run the CLI in a separate network namespace and change the gateway to a non-'local loopback' configuration.
network_mode: "service:openclaw-gateway"
stdin_open: true
tty: true
init: true
entrypoint: ["node", "dist/index.js"]
# CLI container must be started after the gateway container
depends_on:
- openclaw-gateway
72 changes: 36 additions & 36 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,68 +9,68 @@
"openclaw": "openclaw.mjs"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"openclaw.mjs",
"README-header.png",
"README.md",
"assets/**",
"dist/*.js",
"dist/*.json",
"docs/**",
"extensions/**",
"git-hooks/**",
"patches/**",
"scripts/format-staged.js",
"scripts/postinstall.js",
"scripts/setup-git-hooks.js",
"skills/**",
"dist/acp/**",
"dist/agents/**",
"dist/auto-reply/**",
"dist/browser/**",
"dist/canvas-host/**",
"dist/channels/**",
"dist/cli/**",
"dist/commands/**",
"dist/config/**",
"dist/compat/**",
"dist/config/**",
"dist/control-ui/**",
"dist/cron/**",
"dist/channels/**",
"dist/daemon/**",
"dist/discord/**",
"dist/gateway/**",
"dist/hooks/**",
"dist/imessage/**",
"dist/infra/**",
"dist/line/**",
"dist/link-understanding/**",
"dist/logging/**",
"dist/macos/**",
"dist/media/**",
"dist/markdown/**",
"dist/media-understanding/**",
"dist/link-understanding/**",
"dist/process/**",
"dist/plugins/**",
"dist/media/**",
"dist/memory/**",
"dist/node-host/**",
"dist/pairing/**",
"dist/plugin-sdk/**",
"dist/plugins/**",
"dist/process/**",
"dist/providers/**",
"dist/routing/**",
"dist/security/**",
"dist/sessions/**",
"dist/providers/**",
"dist/shared/**",
"dist/signal/**",
"dist/slack/**",
"dist/telegram/**",
"dist/line/**",
"dist/tui/**",
"dist/tts/**",
"dist/web/**",
"dist/wizard/**",
"dist/*.js",
"dist/*.json",
"docs/**",
"extensions/**",
"assets/**",
"openclaw.mjs",
"skills/**",
"patches/**",
"README.md",
"README-header.png",
"CHANGELOG.md",
"LICENSE",
"scripts/postinstall.js",
"scripts/format-staged.js",
"scripts/setup-git-hooks.js",
"git-hooks/**",
"dist/terminal/**",
"dist/routing/**",
"dist/shared/**",
"dist/tts/**",
"dist/tui/**",
"dist/utils/**",
"dist/logging/**",
"dist/memory/**",
"dist/markdown/**",
"dist/node-host/**",
"dist/pairing/**",
"dist/whatsapp/**"
"dist/web/**",
"dist/whatsapp/**",
"dist/wizard/**"
],
"type": "module",
"main": "dist/index.js",
Expand Down
Loading