Build a Raspberry Pi Kitchen Display for Your Recipes
A Raspberry Pi with a small display makes a practical kitchen companion. Run CookCLI on it, point it at your recipe collection, and you get a browsable recipe server accessible from any device on your network — or directly on a touchscreen mounted in your kitchen.
This guide covers the hardware, setup, and a few tricks to make it work well in a kitchen environment.
What You Need
- Raspberry Pi 4 or 5 (2GB+ RAM is fine — CookCLI is lightweight)
- microSD card (16GB+)
- Power supply for your Pi model
- Optional: touchscreen display (the official 7" Raspberry Pi Touch Display works well, or any HDMI monitor)
- Your recipes in Cooklang format
If you don't want a dedicated screen, skip the display — you can access the recipe server from your phone, tablet, or laptop over your local network.
Install Raspberry Pi OS
Flash Raspberry Pi OS Lite (64-bit) to your microSD card using Raspberry Pi Imager. During setup:
- Enable SSH
- Configure your Wi-Fi
- Set a hostname (e.g.,
kitchen)
Boot the Pi and SSH in:
Install CookCLI
Option A: Docker (Recommended)
Install Docker on the Pi:
Log out and back in, then run CookCLI:
Pre-built ARM images are available for both Pi 4+ (aarch64) and Pi 3 (armv7), so Docker pulls the right architecture automatically.
Option B: Binary Install
Download the ARM binary from the CookCLI releases page:
Get Your Recipes Onto the Pi
Git Sync (Best for Version Control)
If your recipes are in a Git repository:
Set up a cron job to pull updates automatically:
Syncthing (Best for Real-Time Sync)
Syncthing keeps your recipe folder in sync across devices. Install it on the Pi and your main computer, share the recipe folder, and edits propagate automatically.
Simple Copy
Or just copy your recipes over:
Start the Recipe Server
If you installed the binary (not Docker):
The --host flag makes the server accessible from other devices on your network, not just localhost.
Run on Boot with systemd
Create a service file so CookCLI starts automatically:
Browse Recipes
Open a browser on any device on your network and go to:
(Or use the Pi's IP address: http://192.168.1.100:9080)
The web interface lets you:
- Browse recipes organized by folder
- Search by ingredient or recipe name
- Scale recipes up or down — ingredient quantities adjust automatically
- Generate shopping lists from multiple recipes at once
- Track your pantry to see what you already have and what you need
The interface is responsive, so it works on a touchscreen, phone, or desktop browser.
Optional: Kiosk Mode for Touchscreen
If you're using a touchscreen display, set up the Pi to boot directly into the recipe browser in fullscreen:
Install a minimal desktop environment if you're on Raspberry Pi OS Lite:
The unclutter package hides the mouse cursor after a few seconds of inactivity — useful for a touchscreen-only setup.
Organize Your Recipes for Browsing
The recipe server mirrors your folder structure. Organize your recipes into directories for easy navigation:
Add an aisle.conf file to your recipe directory to organize shopping lists by store section:
What This Gets You
A dedicated kitchen device that:
- Shows your entire recipe collection, searchable and browsable
- Generates shopping lists from whatever you plan to cook this week
- Doesn't require internet access after initial setup
- Costs under $100 in hardware (less if you skip the display)
- Uses about 5 watts of power running idle
The Pi handles CookCLI's server easily — it's a single Rust binary with minimal resource requirements. No database server, no background services, just your recipes as text files served over HTTP.
Get started with Cooklang → | CookCLI documentation →
-Alex