Files
blood-brain-barrier/docker-compose.yml
Mikhail Kilin 37f86740a2 feat: hide entry content from list, add GET /api/entries/:id/content endpoint
Content is no longer returned in the entries list. A separate endpoint
returns plain text content for clipboard copying on demand.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-17 16:23:05 +03:00

15 lines
243 B
YAML

services:
postgres:
image: postgres:16
environment:
POSTGRES_USER: bbb
POSTGRES_PASSWORD: bbb
POSTGRES_DB: bbb
ports:
- "5432:5432"
volumes:
- pgdata:/var/lib/postgresql/data
volumes:
pgdata: