f9ee6240c3
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.
10 lines
219 B
YAML
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
|