shimmy 1.7.0

Lightweight sub-5MB Ollama alternative with native SafeTensors support. No Python dependencies, 2x faster loading. Now with GitHub Spec-Kit integration for systematic development.
# Docker Compose configuration for local development and cloud deployment
version: '3.8'

services:
  shimmy:
    build:
      context: ..
      dockerfile: deploy/Dockerfile
    ports:
      - "11434:11434"
    environment:
      - RUST_LOG=info
    volumes:
      # Mount models directory if you have local models
      - ./models:/app/models:ro
    restart: unless-stopped
    healthcheck:
      test: ["CMD", "curl", "-f", "http://localhost:11434/health"]
      interval: 30s
      timeout: 5s
      retries: 3
      start_period: 10s

  # Optional: Add Nginx reverse proxy for production
  nginx:
    image: nginx:alpine
    ports:
      - "80:80"
      - "443:443"
    volumes:
      - ./nginx.conf:/etc/nginx/nginx.conf:ro
      # Add SSL certificates if needed
      # - ./ssl:/etc/nginx/ssl:ro
    depends_on:
      - shimmy
    restart: unless-stopped
    profiles:
      - production