Skip to content

Troubleshooting Guide

Use this page to quickly locate common MANYOYO issues and run the shortest diagnostic path.

Quick Entry

Quick Reference

SymptomPossible CauseQuick CommandDetails
manyoyo build failsnetwork/disk/permissiondf -h, manyoyo build --iv 1.8.0-commonBuild Issues
pinging container registry failedlocal image not builtmanyoyo build --iv 1.8.0-commonImage Pull Failures
permission deniedDocker/Podman permission issuegroups, docker psPermission Issues
env vars not effectiveinvalid envFile path/formatmanyoyo config show --ef /abs/path/example.envEnv Var Issues

Minimal Diagnostic Flow

  1. Basic checks
bash
manyoyo -v
node --version
docker --version   # or podman --version
  1. Inspect final config and command
bash
manyoyo config show
manyoyo config command
manyoyo config show -r claude
  1. Check images and containers
bash
docker images | grep manyoyo   # or podman images
manyoyo ps
  1. Verify env file loading (--ef only accepts absolute paths)
bash
manyoyo config show --ef /abs/path/anthropic_claudecode.env
manyoyo run --ef /abs/path/anthropic_claudecode.env -x env | grep ANTHROPIC

Config Checks

  • Run profiles are under runs.<name> in ~/.manyoyo/manyoyo.json.
  • manyoyo run -r <name> reads runs.<name> from ~/.manyoyo/manyoyo.json.
  • envFile must be an array of absolute paths.

Getting Help

  1. Collect diagnostic info
bash
uname -a
manyoyo -v
manyoyo config show
manyoyo ps
  1. Export logs
bash
manyoyo build --iv 1.8.0-common 2>&1 | tee build-error.log
docker logs <container-name> 2>&1 | tee runtime-error.log  # or podman logs
  1. Submit an issue
  • Repo: GitHub Issues
  • Include: reproduction steps, logs, system info, and redacted config snippets.

Released under the MIT License.