Reference
Troubleshooting
Common deployment and machine issues.
Local build contexts are rejected
Nethera does not upload source directories for MVP.
nethera.yml
services: web: build: .Build and push an image to a registry, then reference it with image:.
Relative volume paths are rejected
This is not supported:
nethera.yml
services: web: volumes: - ./data:/dataUse an absolute path on the target machine:
nethera.yml
services: web: volumes: - /mnt/nethera/app-data:/dataenv_file is rejected
Use app-scoped secrets instead:
bash
$neth secrets set API_KEYThen list the secret under services.<service>.nethera.secrets.
Agent installed but no machine appears
The agent initiates pairing after installation. Follow the pairing prompt shown by the agent. Then check:
bash
$sudo systemctl status nethera-agent$sudo journalctl -u nethera-agent -n 100 --no-pagerEndpoint requires login unexpectedly
Check nethera.auth.
auth: nonemeans public.auth: loginmeans Nethera login is required.