Skip to content

Tags: av/harbor

Tags

v0.5.2

Toggle v0.5.2's commit message
chore: v0.5.2

v0.5.1

Toggle v0.5.1's commit message
chore: v0.5.1

v0.5.0

Toggle v0.5.0's commit message
chore: v0.5.0

v0.4.19

Toggle v0.4.19's commit message
chore: v0.4.19

v0.4.18

Toggle v0.4.18's commit message
chore: v0.4.18

v0.4.17

Toggle v0.4.17's commit message
chore: v0.4.17

v0.4.16

Toggle v0.4.16's commit message
chore: v0.4.16

v0.4.15

Toggle v0.4.15's commit message
chore: v0.4.15

v0.4.14

Toggle v0.4.14's commit message
chore: v0.4.14

v0.4.13

Toggle v0.4.13's commit message
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>