Slash is a self-hosted bookmarking and knowledge organization platform. It supports full-text search, tagging and archiving of saved pages. Designed for information collectors, it helps you create a personal knowledge base. The UI is clean and keyboard-friendly, making it fast to navigate. Slash is ideal for researchers and lifelong learners who gather lots of online resources.

Setup

docker-compose.yaml

version: '3'

networks:
  docker_net:
    external: true

volumes:
  slash:

services:
  app:
    image: yourselfhosted/slash:latest
    container_name: slash
    restart: unless-stopped
    ports:
      - 5231:5231
    volumes:
      - slash:/var/opt/slash
    networks:
      - docker_net

Sources