Skip to content

Console Docker

agiwo-console container up starts a managed single-container deployment for the Console.

  • FastAPI backend
  • web UI
  • agent runtime
  • Bash execution and related runtime tools

The default public entrypoint is http://localhost:8422.

Terminal window
pip install agiwo-console
cat > .env <<'EOF'
OPENAI_API_KEY=...
EOF
agiwo-console container up \
--data-dir "$HOME/agiwo-data" \
--env-file .env

--data-dir is the single persistent host directory. Inside the container, runtime state is rooted under /data/root.

Host directories are invisible by default. Expose them explicitly:

Terminal window
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.

  • agiwo-console container status
  • agiwo-console container logs
  • agiwo-console container restart
  • agiwo-console container down