# Pasty

## About

I was looking for an open source self-hosted alternative to something like paste bin. That's when I found [Pasty](https://github.com/lus/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.

![](https://4023630493-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FsVNw0ukkXTvV2pJfDvjn%2Fuploads%2Fhnqx6Q1LCDRof1dgWmDs%2Fimage.png?alt=media\&token=7b006623-f713-419c-bc6f-725fafcc9eec)

![](https://4023630493-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FsVNw0ukkXTvV2pJfDvjn%2Fuploads%2FbGqstdqwlPy6B2H5HUvv%2Fimage.png?alt=media\&token=3829fea4-8762-4e73-a42b-82f329ec9041)

## 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'
```
