Troubleshooting Guide
Use this page to quickly locate common MANYOYO issues and run the shortest diagnostic path.
Quick Entry
- Build failures:
build-errors - Runtime failures:
runtime-errors
Quick Reference
| Symptom | Possible Cause | Quick Command | Details |
|---|---|---|---|
manyoyo build fails | network/disk/permission | df -h, manyoyo build --iv 1.8.0-common | Build Issues |
pinging container registry failed | local image not built | manyoyo build --iv 1.8.0-common | Image Pull Failures |
permission denied | Docker/Podman permission issue | groups, docker ps | Permission Issues |
| env vars not effective | invalid envFile path/format | manyoyo config show --ef /abs/path/example.env | Env Var Issues |
Minimal Diagnostic Flow
- Basic checks
bash
manyoyo -v
node --version
docker --version # or podman --version- Inspect final config and command
bash
manyoyo config show
manyoyo config command
manyoyo config show -r claude- Check images and containers
bash
docker images | grep manyoyo # or podman images
manyoyo ps- Verify env file loading (
--efonly accepts absolute paths)
bash
manyoyo config show --ef /abs/path/anthropic_claudecode.env
manyoyo run --ef /abs/path/anthropic_claudecode.env -x env | grep ANTHROPICConfig Checks
- Run profiles are under
runs.<name>in~/.manyoyo/manyoyo.json. manyoyo run -r <name>readsruns.<name>from~/.manyoyo/manyoyo.json.envFilemust be an array of absolute paths.
Getting Help
- Collect diagnostic info
bash
uname -a
manyoyo -v
manyoyo config show
manyoyo ps- 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- Submit an issue
- Repo: GitHub Issues
- Include: reproduction steps, logs, system info, and redacted config snippets.