feat: add deployment configuration
Build and Deploy / build-and-deploy (push) Failing after 1m39s

- Dockerfile: production image for roux-server (Debian slim, tini, binary)
- docker-compose.yml: production compose with recipe/data volume mounts
- .gitea/workflows/deploy.yaml: Gitea Actions pipeline that builds, tests,
  pushes Docker image, and deploys via SSH

Follows the same pattern used by the Atlas project.
This commit is contained in:
2026-05-19 22:58:52 -04:00
parent a70cd86afd
commit f9ee6240c3
3 changed files with 120 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
services:
roux-server:
image: git.roo.lol/jbrechtel/roux:latest
restart: unless-stopped
ports:
- "127.0.0.1:8080:8080"
volumes:
- /srv/roux/recipes:/recipes:ro
- /srv/roux/data:/data