Oil Blender v1.0.0
Docker Image
docker pull ghcr.io/tfindley/oil-blender:1.0.0Quick Start with Docker Compose
services:
app:
image: ghcr.io/tfindley/oil-blender:1.0.0
ports:
- "3000:3000"
environment:
DATABASE_URL: postgresql://oils:oils@db:5432/oils
NEXT_PUBLIC_BASE_URL: http://localhost:3000
ADMIN_SECRET: change-me
CRON_SECRET: change-me
depends_on:
db:
condition: service_healthy
db:
image: postgres:16-alpine
environment:
POSTGRES_USER: oils
POSTGRES_PASSWORD: oils
POSTGRES_DB: oils
healthcheck:
test: ["CMD-SHELL", "pg_isready -U oils"]
interval: 5s
retries: 5Database migrations run automatically on container startup. To seed the oil library:
docker compose exec app node scripts/seed.jsSee the README for full setup instructions including enrichment, analytics, and branding.
Full Changelog: v0.2.4...v1.0.0