You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rename compose.yml to docker-compose.yml, rename web health
endpoint from /health to /healthz, add compose healthcheck for
the web service, and add a Build CI workflow that validates the
compose file and smoke-builds the web Docker image.
"fetch('http://127.0.0.1:3000/healthz').then(async (res) => { if (!res.ok) throw new Error(String(res.status)); const body = (await res.text()).trim(); if (body !== 'ok') throw new Error(body); }).catch(() => process.exit(1))",
0 commit comments