Files
roux/docker-compose.yml
T
jbrechtel f9ee6240c3
Build and Deploy / build-and-deploy (push) Failing after 1m39s
feat: add deployment configuration
- 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.
2026-05-19 22:58:52 -04:00

10 lines
219 B
YAML

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