Skip to main content

Install troubleshooting

In this page

pnpm / Node version

IssueFix
pnpm: command not foundcorepack enable && corepack prepare pnpm@9.15.0 --activate
Engine errorsUse Node 20.11+ as required by monorepo package.json engines.

Prisma / Postgres

IssueFix
P1001 connection errorsVerify DATABASE_URL host/port; for Docker use 127.0.0.1 if port published, or postgres from inside the API container.
Migration driftRun pnpm --filter @deploydock/api exec prisma migrate deploy only on compatible schema versions.

Redis and deploy queue

IssueFix
Worker cannot connectMatch REDIS_HOST / REDIS_PORT to your Redis; set REDIS_PASSWORD on worker if needed.
Want to skip RedisSet PANEL_DISABLE_QUEUE=1 on API — deploys will not execute worker adapters (see Environment variables).

Docker build failures

IssueFix
apps/web/dist missing in prod nginxRun pnpm --filter @deploydock/web build before docker compose -f deploy/docker/docker-compose.prod.yml up.
API cannot reach DBEnsure depends_on services are healthy; check DATABASE_URL uses service name postgres inside the network.

Further reading