Console Docker
Console Docker
Section titled “Console Docker”agiwo-console container up starts a managed single-container deployment for the Console.
What the container includes
Section titled “What the container includes”- FastAPI backend
- web UI
- agent runtime
- Bash execution and related runtime tools
The default public entrypoint is http://localhost:8422.
Quick start
Section titled “Quick start”pip install agiwo-consolecat > .env <<'EOF'OPENAI_API_KEY=...EOFagiwo-console container up \ --data-dir "$HOME/agiwo-data" \ --env-file .envData root
Section titled “Data root”--data-dir is the single persistent host directory. Inside the container, runtime state is rooted under /data/root.
Host mounts
Section titled “Host mounts”Host directories are invisible by default. Expose them explicitly:
agiwo-console container up \ --data-dir "$HOME/agiwo-data" \ --env-file .env \ --mount "$HOME/projects:projects"Inside the container that path appears at /mnt/host/projects.
Lifecycle commands
Section titled “Lifecycle commands”agiwo-console container statusagiwo-console container logsagiwo-console container restartagiwo-console container down