Memos is a minimalist self-hosted app for taking notes and managing thoughts. It supports Markdown, tagging and a responsive design that works across devices. Notes are organized by creation date and easily searchable. The app prioritizes simplicity and speed, with a clean interface and minimal distractions. It’s perfect for journaling, daily logs, or capturing ideas quickly.

Setup

docker-compose.yaml

version: '3'

networks:
  docker_net:
    external: true

volumes:
  memos:

services:
  app:
    image: neosmemo/memos:stable
    container_name: memos
    restart: unless-stopped
    ports:
      - 5230:5230
    volumes:
      - memos:/var/opt/memos
    networks:
      - docker_net

Sources