Files
Keep/keep-notes/docker-compose.yml
2026-04-17 21:14:43 +02:00

111 lines
2.6 KiB
YAML

version: '3.8'
services:
postgres:
image: postgres:16-alpine
container_name: keep-postgres
restart: unless-stopped
environment:
POSTGRES_USER: keepnotes
POSTGRES_PASSWORD: keepnotes
POSTGRES_DB: keepnotes
volumes:
- postgres-data:/var/lib/postgresql/data
ports:
- "5432:5432"
healthcheck:
test: ["CMD-SHELL", "pg_isready -U keepnotes"]
interval: 5s
timeout: 5s
retries: 5
networks:
- keep-network
keep-notes:
build:
context: .
dockerfile: Dockerfile
image: keep-notes:latest
container_name: keep-notes
restart: unless-stopped
ports:
- "3000:3000"
environment:
# Database
- DATABASE_URL=postgresql://keepnotes:keepnotes@postgres:5432/keepnotes
- NODE_ENV=production
# Application (IMPORTANT: Change these!)
- NEXTAUTH_URL=http://your-domain.com:3000
- NEXTAUTH_SECRET=change-this-to-a-random-secret-string
# Disable Next.js telemetry
- NEXT_TELEMETRY_DISABLED=1
# AI Provider (Optional - for OpenAI)
# - OPENAI_API_KEY=your-openai-api-key-here
# AI Provider (Optional - for Ollama)
# - OLLAMA_BASE_URL=http://ollama:11434
# - OLLAMA_MODEL=granite4:latest
volumes:
# Persist uploaded images and files
- keep-uploads:/app/public/uploads
# Optional: Mount custom SSL certificates
# - ./certs:/app/certs:ro
depends_on:
postgres:
condition: service_healthy
networks:
- keep-network
# Optional: Resource limits for Proxmox VM
deploy:
resources:
limits:
cpus: '2'
memory: 2G
reservations:
cpus: '0.5'
memory: 512M
# Health check for automatic restart
healthcheck:
test: ["CMD", "wget", "--spider", "-q", "http://localhost:3000"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
# Optional: Ollama for local AI models
# Uncomment this section if you want to use local AI models
# ollama:
# image: ollama/ollama:latest
# container_name: keep-ollama
# restart: unless-stopped
# ports:
# - "11434:11434"
# volumes:
# - ollama-data:/root/.ollama
# networks:
# - keep-network
# deploy:
# resources:
# limits:
# cpus: '4'
# memory: 8G
# reservations:
# cpus: '2'
# memory: 4G
networks:
keep-network:
driver: bridge
volumes:
postgres-data:
driver: local
keep-uploads:
driver: local
# ollama-data:
# driver: local