Skip to content

Troubleshooting

SymptomLikely cause / fix
port is already allocatedThe port (80/443/5454) is in use by something else. Re-run ./setup.sh and pick a different port.
Chrome/Edge can't open the app but Safari canThe browser force-upgrades the address to https://, which plain-HTTP modes don't serve. Type http:// explicitly, or switch to LAN + HTTPS mode.
Works on localhost but not via the machine's IP (macOS)The macOS firewall blocks Docker's inbound connections. System Settings → Network → Firewall → Options… → set Docker to Allow incoming connections.
LAN + HTTPS: certificate not issuedCheck docker compose logs caddy. The DuckDNS/Cloudflare token must be valid and the domain spelled exactly.
LAN + HTTPS: domain doesn't resolve on some devicesYour resolver blocks private-IP answers (DNS rebind protection). See the fixes.
Setup wizard never appears / core: offline in the top barCore can't reach Postgres. Check docker compose logs core and logs postgres; verify DATABASE_URL matches POSTGRES_PASSWORD in deploy/.env.
POSTGRES_PASSWORD error on startupdeploy/.env is missing or empty. Run ./setup.sh, or copy .env.example to .env and fill it in.
Public mode: HTTPS cert not issuedThe domain's DNS must resolve to this server, and ports 80/443 must be reachable from the internet.
Code changes not reflectedRebuild: docker compose up --build -d.
Can't reach the app after picking the wrong network modeEdit deploy/network.env by hand and restart — see changing the mode from the CLI.

Reading logs

bash
cd deploy
docker compose ps              # are all containers up?
docker compose logs -f core    # API server
docker compose logs -f caddy   # proxy / certificates
docker compose logs -f postgres

The app also keeps its own log view in Settings → Logs (searchable, with a configurable capture level).

Start completely fresh

This deletes all data

bash
cd deploy
docker compose down -v
./setup.sh

Still stuck?

Open an issue on GitHub with the symptom and the relevant log lines.

Free for personal & non-commercial use. Source-available.