6ffa2ecdfb
- 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
21 lines
407 B
YAML
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 |