https://github.com/fmstrat/docker-ttrss
Tiny Tiny RSS in Docker with LDAP and International Support.
https://github.com/fmstrat/docker-ttrss
Last synced: 4 months ago
JSON representation
Tiny Tiny RSS in Docker with LDAP and International Support.
- Host: GitHub
- URL: https://github.com/fmstrat/docker-ttrss
- Owner: Fmstrat
- Created: 2019-01-31T17:28:17.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-31T18:12:35.000Z (over 7 years ago)
- Last Synced: 2025-02-27T19:59:51.687Z (over 1 year ago)
- Language: Dockerfile
- Size: 1.95 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker-ttrss
Tiny Tiny RSS in Docker with LDAP and International Support.
This container runs off the official PHP container with apache. It adds supervisord to handle running apache and feed updates in the same container.
## Usage
The below will set up the containers required for tt-rss. You should seperatly set up an nginx instance proxying to `ttrss:80`, or you could open ports to the host.
In your `docker-compose.yml`:
```
version: '2.1'
services:
ttrss-mariadb:
image: mariadb
container_name: ttrss-mariadb
environment:
- MYSQL_ROOT_PASSWORD=ttrss
- MYSQL_PASSWORD=ttrss
- MYSQL_DATABASE=ttrss
- MYSQL_USER=ttrss
volumes:
- /etc/localtime:/etc/localtime:ro
- ./ttrss/mariadb/data/:/var/lib/mysql
restart: always
ttrss:
image: nowsci/docker-ttrss
container_name: ttrss
volumes:
- /etc/localtime:/etc/localtime:ro
- ./ttrss/apache/data:/data
depends_on:
- ttrss-mariadb
restart: always
```