Files
TaskPool/docker-compose.yml
T
admin 6ffa2ecdfb
Build and Deploy / build (push) Failing after 32s
Build and Deploy / docker (push) Has been skipped
Build and Deploy / deploy (push) Has been skipped
feat: add Monaco editor, API error handling, and CI/CD
- Monaco Editor: script editor with syntax highlighting
- API: error handling with ApiError class and token management
- CI/CD: Gitea Actions workflow for build, Docker, and deploy
- Docker: multi-stage build with nginx
- nginx.conf: SPA fallback and API proxy
2026-07-20 17:00:21 +00:00

21 lines
407 B
YAML

version: '3.8'
services:
frontend:
image: git.viaeon.com/admin/taskpool-react:latest
ports:
- "3000:80"
depends_on:
- backend
restart: unless-stopped
backend:
image: git.viaeon.com/admin/taskpool:latest
environment:
- DB_TYPE=sqlite
- DB_PATH=/data/taskpool.db
volumes:
- ./data:/data
ports:
- "8080:8080"
restart: unless-stopped