| 1234567891011121314151617181920212223242526 |
- volumes:
- db:
- services:
- freshrss-db:
- image: postgres:18
- container_name: freshrss-db
- hostname: freshrss-db
- restart: unless-stopped
- logging:
- options:
- max-size: 10m
- volumes:
- - db:/var/lib/postgresql
- environment:
- POSTGRES_DB: ${DB_BASE:-freshrss}
- POSTGRES_USER: ${DB_USER:-freshrss}
- POSTGRES_PASSWORD: ${DB_PASSWORD:-freshrss}
- command:
- # Examples of PostgreSQL tuning.
- # https://wiki.postgresql.org/wiki/Tuning_Your_PostgreSQL_Server
- # When in doubt, skip and stick to default PostgreSQL settings.
- - -c
- - shared_buffers=1GB
- - -c
- - work_mem=32MB
|