Pasty

Lightweight Code Pasting Server

About

I was looking for an open source self-hosted alternative to something like paste bin. That's when I found Pasty. I've been using it for about 4 months now and its good at what it does! No complaints. One thing I like about it is that it sets a modification password and users will only be able to edit a created paste is by entering the password.

Docker-Compose

version: '3.3'
services:
    lus:
        restart: unless-stopped
        ports:
            - '8080:8080'
        container_name: pasty
        environment:
            - PASTY_AUTODELETE=true
        image: 'ghcr.io/lus/pasty:latest'

Last updated