Snippet Box is a simple self-hosted app for organizing your code snippets. It allows you to easily create, edit, browse and manage your snippets in various languages.
Self-host this app for $0.99/mo only!

Snippet Box is a simple self-hosted app for organizing your code snippets. It allows you to easily create, edit, browse and manage your snippets in various languages. With built-in Markdown support, Snippet Box makes it very easy to add notes or simple documentation to your code.
# clone repository
git clone https://github.com/pawelmalak/snippet-box
cd snippet-box
# install dependencies (run only once)
npm run init
# start backend and frontend development servers
npm run dev
Docker Hub image link.
For arm platforms use :arm tag.
# Building image for Linux
docker build -t snippet-box .
# Build image for ARM
docker buildx build \
--platform linux/arm/v7,linux/arm64 \
-f Dockerfile.arm \
-t snippet-box:arm .
# run container
# for ARM use snippet-box:arm tag
docker run -p 5000:5000 -v /path/to/data:/app/data snippet-box
version: '3'
services:
snippet-box:
image: pawelmalak/snippet-box:latest
container_name: snippet-box
volumes:
- /path/to/host/data:/app/data
ports:
- 5000:5000
restart: unless-stopped
Follow instructions from wiki - Installation without Docker




Visit wiki for search functionality and available filters reference: Search functionality
Please login to review this project.
No reviews for this project yet.
Lightweight, minimal and fast pastebin with an SQLite backe…
Very simple (to deploy and to use) secret message service u…
A paste bin that's actually minimalist. WTFPL/0BSD Ru
Comments (0)
Please login to join the discussion on this project.