fix: add default PORT and improve Podman volume compatibility

This commit is contained in:
ramvignesh-b
2026-05-11 11:01:40 +05:30
parent 339abd6462
commit 52944293fb
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ services:
ports:
- "3000:3000"
volumes:
- .:/app
- .:/app:z
- /app/node_modules
command: bun run dev
environment:
+1 -1
View File
@@ -1,7 +1,7 @@
import { z } from "zod";
const configSchema = z.object({
PORT: z.string(),
PORT: z.string().default("3000"),
REDIS_URL: z.string(),
API_KEY: z.string(),
});