mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-12-16 21:45:14 +00:00
22 lines
521 B
YAML
22 lines
521 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
unified-workflows:
|
|
build:
|
|
context: .
|
|
dockerfile: unified_Dockerfile
|
|
container_name: unified-n8n-workflows
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
- ./static:/app/static
|
|
- ./unified_workflows.db:/app/unified_workflows.db
|
|
environment:
|
|
- PYTHONUNBUFFERED=1
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:8080/api/stats"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s |