Take control of your culinary experience with a comprehensive, open-source web application designed to manage your favorite dishes. Whether you prefer to self-host via Docker or use a public instance, you get a secure, private space to organize your cooking life. Discover New Recipes: Browse and search over 100,000 recipes from top websites, instantly fetching and parsing data without ever leaving the app. Organize and Categorize: Keep your collection tidy by marking favorites and assigning custom categories for quick access. Advanced Meal Planning: Schedule your cooking up to 30 days in advance to take the guesswork out of dinner time. Smart Shopping Lists: Automatically add recipe ingredients to a checklist and mark them off as you navigate the grocery store. Total Customization: Personalize your interface with custom themes, accent colors, and display styles. Data Ownership: Easily import and export your entire account via ZIP backups for complete peace of mind.
services:
tamari:
image: alexbates/tamari:latest
container_name: tamari
restart: unless-stopped
ports:
- "3000:3000"
volumes:
- ./data:/app/data
environment:
- NODE_ENV=production
- PORT=3000
- DATABASE_URL=file:/app/data/tamari.db
- SECRET_KEY=${SECRET_KEY}
- ADMIN_PASSWORD=${ADMIN_PASSWORD}
- PUID=1000
- PGID=1000# Security
SECRET_KEY=generate_a_secure_random_string_here
ADMIN_PASSWORD=your_secure_admin_passwordAuto-fetched 36 minutes ago
Auto-fetched 36 minutes ago