This repository has been archived on 2021-12-12. You can view files and clone it, but cannot push or open issues or pull requests.
ttrss/docker-compose.yml

33 lines
610 B
YAML

version: '2.1'
services:
ttrss:
image: xoxys/ttrss:latest
ports:
- "80:80"
depends_on:
- db
volumes:
- ttrss_plugins:/var/www/app/plugins.local
- ttrss_icons:/var/www/app/feed-icons
- ttrss_themes:/var/www/app/themes.local
db:
image: postgres
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: secure
POSTGRES_DB: ttrss
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data:
driver: local
ttrss_plugins:
driver: local
ttrss_icons:
driver: local
ttrss_themes:
driver: local