7467a8d30f
docker-compose.yml: two profiles.
- backend: backend (node+ws+better-sqlite3, /data volume) + frontend
(Caddy static build, STORAGE=ws, same-origin proxy)
- firebase: existing Dockerfile + nginx (upstream path, untouched)
Run: docker compose --profile backend up --build. OrbStack local now,
remote docker context later.
server/Dockerfile: node:18-alpine, workspaces (shared dep), rebuild
better-sqlite3 for musl, DB at /data/tracker.sqlite.
Dockerfile.ws: CRA build STORAGE=ws → caddy:2-alpine serves /srv.
No backend URL baked (same-origin).
Caddyfile: handle /api/* + handle /ws → backend:4001 (path preserved,
mutually-exclusive handles so try_files SPA fallback never shadows proxy).
handle { static try_files } last. HTTP basic auth block optional.
src/storage/ws.js: same-origin defaults. Empty baseUrl = relative fetch
(Caddy proxy). wsUrl derives from window.location (http→ws/https→wss).
Fallback localhost for bare npm start dev.
.dockerignore: add data/ scratch/ tmp/ (never bake into image). Keep
Caddyfile in context (frontend build COPYs it).
Smoke verified via OrbStack:
- GET / → 200 (static SPA)
- PUT/GET /api/doc roundtrip → JSON persists
- WS /ws subscribe + change push → both work through proxy
Firebase profile: pre-existing Dockerfile requires .env.local (hardcoded
COPY on main, not changed here). User must create file. Not a regression.
24 lines
597 B
Docker
24 lines
597 B
Docker
# server/Dockerfile — backend (Express + ws + better-sqlite3)
|
|
FROM node:18-alpine AS build
|
|
WORKDIR /app
|
|
|
|
# workspaces root needed: shared/ is a dependency (@ttrpg/shared)
|
|
COPY package*.json ./
|
|
COPY shared/package.json ./shared/
|
|
COPY server/package.json ./server/
|
|
RUN npm install --workspaces --include-workspace-root
|
|
|
|
COPY shared/ ./shared/
|
|
COPY server/ ./server/
|
|
|
|
# better-sqlite3 builds native; rebuild for alpine musl
|
|
RUN cd server && npm rebuild better-sqlite3
|
|
|
|
ENV NODE_ENV=production
|
|
ENV PORT=4001
|
|
ENV DB_PATH=/data/tracker.sqlite
|
|
|
|
EXPOSE 4001
|
|
WORKDIR /app/server
|
|
CMD ["node", "index.js"]
|