Tags: av/harbor
Tags
fix(unsloth-studio): preserve docker compose run arg passthrough The boost and hermes cross-integrations overrode entrypoint to `["/bin/sh", "-c"]` plus an inline `command:` script. That shape breaks `docker compose run <service> <args>` because compose replaces `command:` with the user's args, but `sh -c` only consumes the first arg as the script and discards the rest. Visible failure: `harbor run boost uv run config.py` (used by docgen) executed `uv` without its subcommand. Switch to a shell-wrapper entrypoint that does the bootstrap key re-export then `exec "$@"` — CMD from the upstream Dockerfile / compose.hermes.yml carries through unchanged on `harbor up`, and user-supplied CMD overrides pass through verbatim on `harbor run`. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
PreviousNext