There was an error while loading. Please reload this page.
Two common ways to get a shell inside the image:
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>