Compare commits

...

2 Commits

Author SHA1 Message Date
JCEEE 24ffe3d8a0 fix fe exposure 2026-08-07 13:31:22 +01:00
JCEEE f25873dd6d update build step 2026-08-07 12:04:51 +01:00
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -1,10 +1,11 @@
name: famdone-service
services:
app:
build:
context: .
dockerfile: docker/Dockerfile
ports:
- "${FRONTEND_PORT:-3001}:3001" # nginx / app (public)
- "${FRONTEND_PORT:-3001}:80" # nginx / app (public)
- "${PB_PORT:-8091}:8090" # PocketBase admin UI (private network)
volumes:
- "${PB_DATA:-./pb_data}:/app/pb_data" # PB DB persistence
+1 -1
View File
@@ -6,7 +6,7 @@ RUN corepack enable
WORKDIR /app
COPY . .
RUN pnpm install --frozen-lockfile
RUN pnpm --filter frontend build
RUN pnpm --filter famchamp build
RUN pnpm --filter proxy build
# ── Runtime stage ────────────────────────────────────────