Picpeak
๐ Self-hosted photo sharing platform for photographers & events. Open-source alternative to PicDrop/Scrapbook with time-limited galleries, password protection, custom branding & no monthly fees. Built with React + Node.js ๐ธ
Install / Use
/learn @the-luap/PicpeakREADME
๐ธ PicPeak - Open Source Photo Sharing for Events
<div align="center"> <img src="docs/picpeak-logo.png" alt="PicPeak Logo" width="300" />Homepage ยท Live Demo ยท Documentation
</div>PicPeak is a powerful, self-hosted open-source alternative to commercial photo-sharing platforms like PicDrop.com and Scrapbook.de. Designed specifically for photographers and event organizers, PicPeak makes it simple to share beautiful, time-limited photo galleries with clients while maintaining full control over your data and branding.

๐ฎ Live Demo
Try PicPeak without installing anything:
| | |
|---|---|
| Demo URL | demo.picpeak.app |
| Admin Panel | demo.picpeak.app/admin |
| Email | demo@picpeak.app |
| Password | Demo2026! |
The demo resets periodically. Uploaded content may be removed without notice.
๐ Why Choose PicPeak?
Unlike expensive SaaS solutions, PicPeak gives you:
- ๐ฐ No Monthly Fees - One-time setup, unlimited galleries
- ๐ Complete Data Control - Your photos stay on your server
- ๐จ White-Label Ready - Full branding customization
- ๐ฑ Mobile-First Design - Beautiful on all devices
- ๐ Lightning Fast - Optimized performance and caching
- ๐ Multi-Language - Built-in i18n support (EN, DE)
โจ Key Features
For Photographers
- ๐ Drag & Drop Upload - Simply drop photos into folders
- ๐ External Media (Reference Mode) - Browse and import from a readโonly external folder library without copying originals
- โฐ Auto-Expiring Galleries - Set expiration dates (default: 30 days)
- ๐ Password Protection - Secure client galleries
- ๐ง Automated Emails - Creation confirmations and expiration warnings
- ๐ Analytics Dashboard - Track views, downloads, and engagement
- ๐จ Custom Themes - Match your brand perfectly
- ๐ Public Landing Page - Publish a curated marketing page when guests visit your root URL
For Clients
- ๐ผ๏ธ Beautiful Galleries - Clean, modern interface
- ๐ฑ Mobile Optimized - Swipe through photos on any device
- โฌ๏ธ Bulk Downloads - Download all photos with one click
- ๐ Smart Search - Find photos quickly
- ๐ค Guest Uploads - Optional client photo uploads
- ๐ก๏ธ Download Protection - Advanced image protection with watermarking and right-click prevention
Technical Excellence
- ๐ณ Docker Ready - Deploy in minutes
- ๐ Auto-Processing - Automatic thumbnail generation
- ๐๏ธ Reference Library Support - Point PicPeak at
EXTERNAL_MEDIA_ROOTto reference existing originals, index quickly, and generate thumbnails on demand - ๐พ Smart Storage - Automatic archiving of expired galleries
- ๐ก๏ธ Security First - JWT auth, rate limiting, CORS protection
- ๐ Scalable - From small studios to large agencies
๐ Quick Start
Get PicPeak running in under 5 minutes:
# Clone the repository
git clone https://github.com/the-luap/picpeak.git
cd picpeak
# Copy environment template
cp .env.example .env
# Edit configuration (required: JWT_SECRET)
nano .env
# Start with Docker Compose
docker compose up -d
# Access at http://localhost:3000
Note on Docker file permissions (PUID/PGID)
- When using bind mounts (e.g.,
./storage,./data,./logs,./events), ensure the container user can write to these host folders. The backend runs as a nonโroot user by default. - Set
PUIDandPGIDin your.envto match your host userโs UID/GID (runid -uandid -gon the host). Compose maps the container user to these values. - Example in
.env:PUID=1000PGID=1000
- Without this, creating events, uploads, thumbnails, or logs can fail with "Permission denied".
๐ Release Channels
PicPeak offers two release channels for different needs:
Stable Channel (Recommended)
- Production-ready releases
- Thoroughly tested before release
- Docker tags:
stable,latest, or specific version likev2.3.0
Beta Channel
- Early access to new features
- May contain bugs or incomplete functionality
- Docker tags:
betaor specific version likev2.3.0-beta.1
Switching Channels
Set the PICPEAK_CHANNEL environment variable in your .env file:
# For stable releases (default)
PICPEAK_CHANNEL=stable
# For beta releases
PICPEAK_CHANNEL=beta
# For a specific version
PICPEAK_CHANNEL=v2.3.0
Then update your containers:
docker compose -f docker-compose.production.yml pull
docker compose -f docker-compose.production.yml up -d
Update Notifications
The admin dashboard automatically notifies you when updates are available for your channel. To disable update checks, set:
UPDATE_CHECK_ENABLED=false
๐ Documentation
- ๐ Deployment Guide - Detailed installation instructions
- Includes the new External Media Library reference mode
- ๐ Admin API (OpenAPI) - Machine-readable documentation for event automation endpoints
- ๐ ๏ธ Admin API Quickstart - Step-by-step authentication and testing guide for the documented endpoints
- ๐ค Contributing - How to contribute
- ๐ License - MIT License
- ๐ Security - Security policies
- ๐ Code of Conduct - Community guidelines
๐ Public Landing Page
Spotlight your studio with a customizable marketing page at /:
- Head to Admin โ CMS Pages to enable the public landing page toggle.
- Edit the provided HTML template (rich sections, hero, testimonials) and optional CSS overrides.
- The preview renders in a sandboxed iframe so you can iterate safely before publishing.
- PicPeak sanitizes stored HTML and CSS server-sideโscripts, iframes, and unsafe attributes are stripped automatically.
- Use Reset to default anytime to restore the bundled template.
- The backend caches the rendered landing page for 60 seconds by default; override with
PUBLIC_SITE_CACHE_TTL_MSif you need a different TTL. - When the landing page is disabled PicPeak continues to serve the admin SPA/login exactly as before.
๐ฏ Use Cases
Perfect for:
- ๐ Wedding Photographers - Share ceremony photos securely
- ๐ Event Photography - Birthday parties, corporate events
- ๐ธ Portrait Studios - Client galleries with download limits
- ๐ข Corporate Events - Internal photo sharing with branding
- ๐ School Photography - Secure parent access with expiration
๐๏ธ Tech Stack
- Backend: Node.js, Express, SQLite/PostgreSQL
- Frontend: React, Tailwind CSS, Framer Motion
- Storage: File-based with automatic archiving
- Email: SMTP with customizable templates
- Analytics: Privacy-focused with Umami integration
๐ป System Requirements
Minimum Requirements
- CPU: 2 CPU cores
- RAM: 2GB minimum
- Storage: 20GB minimum (plus photo storage needs)
- OS: Linux (Ubuntu 20.04+), macOS, or Windows with WSL2
- Node.js: v18.0.0 or higher
- Database: SQLite (included) or PostgreSQL 12+
Docker Requirements (Recommended)
- Docker: v20.10.0+
- Docker Compose: v2.0.0+
Video Support Requirements
When enabling video uploads, consider these additional resources:
| Resource | Recommendation | Notes | |----------|----------------|-------| | RAM | 4GB+ recommended | FFmpeg processing requires more memory | | Storage | Plan for 10-100x more | Videos are significantly larger than images | | CPU | Additional cores help | Video thumbnail extraction is CPU-intensive | | Bandwidth | Higher throughput | Video streaming requires more bandwidth |
Technical Notes:
- FFmpeg is bundled via npm (
@ffmpeg-installer/ffmpeg) - no system installation required - Maximum upload size: 10GB per video file
- Chunked upload support for files >100MB (resumable uploads)
- Supported formats: MP4, WebM, MOV, AVI
- Video thumbnails are automatically generated from the first few seconds
For Nginx/Reverse Proxy: If using Nginx, increase the client max body size:
client_max_body_size 10G;
proxy_read_timeout 3600;
proxy_send_timeout 3600;
๐ค Contributing
We love contributions! PicPeak is built by photographers, for photographers. Whether you're fixing bugs, adding features, or improving documentation, your help is welcome.
See our Contributing Guide for details.
๐ Comparison with Alternatives
| Feature | PicPeak | PicDrop | Scrapbook.de | |---------|---------|---------|--------------| | Self-Hosted | โ | โ | โ | | Custom Branding | โ Full | Limited | Limited | | Monthly Cost | $0 | $29-199 | โฌ19-99 | | Storage Limit | Unlimited* | 50-500GB | 100-1000GB | | Client Uploads | โ | โ | โ | | API Access | โ | Paid | โ | | Open Source | โ | โ | โ |
*Limited only by your server storage
๐ก๏ธ Security
PicPeak takes security seriously:
- ๐ Password hashing with bcrypt
- ๐ซ JWT-based authentication
- ๐ฆ Rate limiting on all endpoints
- ๐ก๏ธ CORS protection
- ๐ Activity logging
- ๐ Secure file access
Found a security issue? Please open a security issue on GitHub
๐ธ Screenshots
๐๏ธ Admin Dashboard
Get a comp
Related Skills
bluebubbles
346.4kUse when you need to send or manage iMessages via BlueBubbles (recommended iMessage integration). Calls go through the generic message tool with channel="bluebubbles".
node-connect
346.4kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
slack
346.4kUse when you need to control Slack from OpenClaw via the slack tool, including reacting to messages or pinning/unpinning items in Slack channels or DMs.
frontend-design
107.2kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
