Add Docker image, compose, and Gitea CI
Build and push image / build (push) Failing after 2m5s

- Multi-stage Dockerfile builds server + web into a single node:20-alpine
  image; runtime serves API on /api and the SPA from /app/public.
- Express now serves web/dist with an SPA fallback that skips /api so API
  misses still 404 cleanly.
- docker-compose.yml is a single-service deploy with a named volume for
  the SQLite database at /data/apothecary.db.
- .gitea/workflows/build.yml pushes :latest, :<sha>, and :semver tags to
  the Gitea container registry on main and v* tags.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-03 20:29:18 -04:00
parent 027cf032be
commit 2a623e0b9c
5 changed files with 129 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
services:
apothecary:
image: gitea.thewrightserver.net/josh/apothecary:latest
container_name: apothecary
restart: unless-stopped
ports:
- "4000:4000"
environment:
PORT: "4000"
APOTHECARY_DB: /data/apothecary.db
volumes:
- apothecary-data:/data
volumes:
apothecary-data: