26 lines
436 B
YAML
26 lines
436 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
context-hub:
|
|
build: .
|
|
container_name: context-hub
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3093:8000"
|
|
volumes:
|
|
- ./data:/app/data
|
|
env_file:
|
|
- .env
|
|
networks:
|
|
- n8n
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 10s
|
|
|
|
networks:
|
|
n8n:
|
|
external: true
|