Spacebin

Modern Pastebin server written in Go with a JS-free web UI and tons of features.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: '3.9'
services:
  spacebin:
    image: spacebinorg/spirit:latest
    restart: always
    environment:
      - SPIRIT_CONNECTION_URI=postgres://spacebin:password@postgres:5432/spacebin?sslmode=disable
    ports:
      - 9000:9000
    depends_on:
      - postgres
  postgres:
    image: postgres:16.3-alpine
    restart: always
    environment:
      - POSTGRES_USER=spacebin
      - POSTGRES_PASSWORD=password
      - POSTGRES_DB=spacebin
    volumes:
      - ./postgres:/var/lib/postgresql/data

Resources

Website: https://spaceb.in/

GitHub: https://github.com/lukewhrit/spacebin

Docker Hub: https://hub.docker.com/r/spacebinorg/spirit

Configuration: https://github.com/lukewhrit/spacebin#documentation