This lightweight pastebin alternative allows you to easily share text, prose, and code snippets. Built with Elixir and Phoenix, it offers a fast and reliable way to store and distribute information either publicly or privately. You can quickly pipe text directly from your terminal using netcat, making it an excellent addition to any developer's toolkit.
Key features include:
nc to instantly generate a shareable URL.services:
db:
image: postgres:13-alpine
restart: always
environment:
POSTGRES_USER: ${DB_USER}
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_DB: ${DB_NAME}
volumes:
- ./db-data:/var/lib/postgresql/data
exbin:
image: m1dnight/exbin:latest
restart: always
ports:
- "4000:4000"
environment:
- DB_HOST=db
- DB_USER=${DB_USER}
- DB_PASSWORD=${DB_PASSWORD}
- DB_NAME=${DB_NAME}
- SECRET_KEY_BASE=${SECRET_KEY_BASE}
- HOSTNAME=${HOSTNAME}
- PORT=4000
depends_on:
- dbDB_USER=exbin
DB_PASSWORD=your_secure_password
DB_NAME=exbin
SECRET_KEY_BASE=your_generated_secret_key_base_at_least_64_bytes
HOSTNAME=localhostAuto-fetched about 21 hours ago
Auto-fetched about 21 hours ago