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
Raw Normal View History

version: '2.1'
2019-07-02 14:18:08 +02:00
services:
ttrss:
image: xoxys/ttrss:latest
ports:
- "80:80"
2019-07-03 09:04:01 +02:00
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
2019-07-02 14:18:08 +02:00
db:
image: postgres
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: secure
POSTGRES_DB: ttrss
volumes:
- postgres_data:/var/lib/postgresql/data
2019-07-02 14:18:08 +02:00
volumes:
postgres_data:
driver: local
ttrss_plugins:
driver: local
ttrss_icons:
driver: local
ttrss_themes:
driver: local