Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
- ADD_CHAIN138_TO_LEDGER_LIVE: Ledger form done; public code review repo bis-innovations/LedgerLive; init/push commands - CONTRACT_DEPLOYMENT_RUNBOOK: Chain 138 gas price 1 gwei, 36-addr check, TransactionMirror workaround - CONTRACT_*: AddressMapper, MirrorManager deployed 2026-02-12; 36-address on-chain check - NEXT_STEPS_FOR_YOU: Ledger done; steps completable now (no LAN); run-completable-tasks-from-anywhere - MASTER_INDEX, OPERATOR_OPTIONAL, SMART_CONTRACTS_INVENTORY_SIMPLE: updates - LEDGER_BLOCKCHAIN_INTEGRATION_COMPLETE: bis-innovations/LedgerLive reference Co-authored-by: Cursor <cursoragent@cursor.com>
2.7 KiB
2.7 KiB
NPMplus Installation Error Fix
Last Updated: 2026-01-31
Document Version: 1.0
Status: Active Documentation
Error: no configuration file provided: not found
When: Running docker compose pull during NPMplus installation
Problem
The Proxmox helper script tries to run docker compose pull before ensuring:
- The script is in the
/optdirectory - The
compose.yamlfile exists
Solutions
Solution 1: Fix Existing Container (if one was created)
If a container was partially created, fix it:
# Find the container ID
ssh root@192.168.11.11 "pct list | tail -5"
# Fix the installation
bash scripts/nginx-proxy-manager/fix-npmplus-install.sh 192.168.11.11 <CONTAINER_ID>
Solution 2: Re-run Installation with Fix
Use the fixed installation script:
bash scripts/nginx-proxy-manager/install-npmplus-fixed.sh
Solution 3: Manual Fix After Installation
If installation partially completed:
ssh root@192.168.11.11
pct enter <CONTAINER_ID>
# Ensure we're in /opt
cd /opt
# Download compose.yaml if missing
if [ ! -f compose.yaml ]; then
curl -fsSL "https://raw.githubusercontent.com/ZoeyVid/NPMplus/refs/heads/develop/compose.yaml" -o compose.yaml
fi
# Update with your settings
yq -i "
.services.npmplus.environment |=
(map(select(. != \"TZ=*\" and . != \"ACME_EMAIL=*\")) +
[\"TZ=America/New_York\", \"ACME_EMAIL=nsatoshi2007@hotmail.com\"])
" compose.yaml
# Start NPMplus
docker compose up -d
Solution 4: Use Complete Migration Script
The complete migration script handles errors automatically:
bash scripts/nginx-proxy-manager/complete-migration.sh
Prevention
The error occurs because:
- The script runs
docker composefrom wrong directory compose.yamlwasn't downloaded successfully- Network issues during installation
To prevent:
- Ensure stable network connection
- Run installation from Proxmox host directly
- Use the fixed installation script
Verification
After fixing, verify installation:
# Check container is running
ssh root@192.168.11.11 "pct status <CTID>"
# Check Docker containers
ssh root@192.168.11.11 "pct exec <CTID> -- docker ps"
# Check compose.yaml exists
ssh root@192.168.11.11 "pct exec <CTID> -- ls -la /opt/compose.yaml"
# Check NPMplus is accessible
curl -k https://<container-ip>:81
Next Steps
After fixing the installation:
- Get container ID and IP
- Run post-installation migration:
bash scripts/nginx-proxy-manager/post-install-migration.sh \ 192.168.11.11 \ <CONTAINER_ID> \ <CONTAINER_IP> - Update UDM Pro port forwarding
- Test all domains
All fix scripts are ready. Use the one that matches your situation.