There was an error while loading. Please reload this page.
First step: print the generated Docker command.
aicage --dry-run <agent>
This helps confirm mounts, env vars, and Docker args before running.
If you need to inspect the container directly, use one of these shell options:
This starts a shell as root before the entrypoint runs.
aicage --entrypoint bash -- <agent>
You are in the image as root, with the entrypoint skipped.
This still runs the entrypoint, sets up the user, and drops you into a shell instead of starting an agent.
aicage -e AICAGE_ENTRYPOINT_CMD=bash -- <agent>