4pfsec Homelab
  • 4pfsec Home Lab by Nee
  • Operating System
    • Ubuntu 20.04.3 LTS (with gnome)
  • Networking
    • pfSense
    • Nginx Proxy Manager
    • Cloudflare
  • System Services / Software
    • Docker & Docker-Compose
    • CIFS / SMB Shares
  • Self-Hosted Services
    • Homer
    • Navidrome
    • Jellyfin
    • Deluge
    • File Browser
    • Pasty
    • NextCloud
  • Security
    • Nord
Powered by GitBook
On this page
  • About
  • Docker-Compose
  1. Self-Hosted Services

Pasty

Lightweight Code Pasting Server

PreviousFile BrowserNextNextCloud

Last updated 2 years ago

About

I was looking for an open source self-hosted alternative to something like paste bin. That's when I found . 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'
Pasty