Add UI controls for configuring auto-backup schedule with hour, day of week, and day of month pickers. The hour picker respects the user's 12h/24h time format preference from settings. Add TZ environment variable support via docker-compose so the container runs in the configured timezone. The timezone is passed to node-cron for accurate scheduling and exposed via the API so the UI displays it. Fix SQLite UTC timestamp handling by appending Z suffix to all timestamps sent to the client, ensuring proper timezone conversion in the browser. Made-with: Cursor
40 lines
1.1 KiB
Docker
40 lines
1.1 KiB
Docker
# Stage 1: React Client bauen
|
|
FROM node:22-alpine AS client-builder
|
|
WORKDIR /app/client
|
|
COPY client/package*.json ./
|
|
RUN npm ci
|
|
COPY client/ ./
|
|
RUN npm run build
|
|
|
|
# Stage 2: Produktions-Server
|
|
FROM node:22-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
# Timezone support + Server-Dependencies (better-sqlite3 braucht Build-Tools)
|
|
COPY server/package*.json ./
|
|
RUN apk add --no-cache tzdata python3 make g++ && \
|
|
npm ci --production && \
|
|
apk del python3 make g++
|
|
|
|
# Server-Code kopieren
|
|
COPY server/ ./
|
|
|
|
# Gebauten Client kopieren
|
|
COPY --from=client-builder /app/client/dist ./public
|
|
|
|
# Fonts für PDF-Export kopieren
|
|
COPY --from=client-builder /app/client/public/fonts ./public/fonts
|
|
|
|
# Verzeichnisse erstellen + Symlink für Abwärtskompatibilität (alte docker-compose mounten nach /app/server/uploads)
|
|
RUN mkdir -p /app/data /app/uploads/files /app/uploads/covers /app/uploads/avatars /app/uploads/photos && \
|
|
mkdir -p /app/server && ln -s /app/uploads /app/server/uploads && ln -s /app/data /app/server/data
|
|
|
|
# Umgebung setzen
|
|
ENV NODE_ENV=production
|
|
ENV PORT=3000
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD ["node", "--import", "tsx", "src/index.ts"]
|