v0.5.2 — Fix Docker deploy on NAS (glibc base, openssl, root, full deps)
The NAS container was crash-looping: npx pulled Prisma 7.8.0 (which rejects url in the datasource), and the alpine + non-root + standalone setup couldn't detect openssl or write the migration engine. Switch to the FMB-proven runtime (node:20-bookworm-slim + openssl, run as root, full node_modules, next start) so the local pinned Prisma 5.22 CLI runs and migrations apply cleanly. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -8,6 +8,13 @@ export type ChangelogEntry = {
|
||||
};
|
||||
|
||||
export const CHANGELOG: ChangelogEntry[] = [
|
||||
{
|
||||
version: "0.5.2",
|
||||
date: "2026-06-15",
|
||||
changes: [
|
||||
"Fixed the app failing to start on the home server — it now launches and runs reliably.",
|
||||
],
|
||||
},
|
||||
{
|
||||
version: "0.5.1",
|
||||
date: "2026-06-15",
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
// Bump on every user-visible release. Changelog entries live in `src/lib/changelog.ts`.
|
||||
export const APP_VERSION = "0.5.1";
|
||||
export const APP_VERSION = "0.5.2";
|
||||
|
||||
Reference in New Issue
Block a user