bootload

📖 DOCS

Shell into a running service

Need to peek at a file, check an environment variable, or run a one-off task inside a live container? bootload gives you an interactive shell and one-off command exec straight into a running replica — no SSH keys, no sidecar, no re-deploy. It's an interactive PTY bridged over the API to the replica's node.

Open a shell

bootload shell <service>

This drops you into an interactive shell inside one running replica of the service — resize-aware, just like a local terminal. Exit it like any shell (exit or Ctrl-D).

Run a one-off command

For a single command (and to script it), use exec with everything after -- as the command line:

bootload exec <service> -- env
bootload exec <service> -- cat /etc/resolv.conf
bootload exec <service> -- ./manage.py migrate

What you need

Every exec session is recorded in the audit log (who, which replica, the command).

Good to know