1
0
Fork 0

Updated TTRSS to use x86dev/docker-ttrss instead of clue/ttrss; updated synced volumes for Nextcloud.

This commit is contained in:
Jonathan Chan 2019-01-20 13:05:19 -08:00
parent bd987b4d93
commit db22255ff1
2 changed files with 8 additions and 7 deletions

View File

@ -7,8 +7,5 @@ services:
ports: ports:
- 8080:80 - 8080:80
volumes: volumes:
- ./data:/var/www/html/data - .:/var/www/html
- ./config:/var/www/html/config
- ./themes:/var/www/html/themes
- ./apps:/var/www/html/custom_apps
restart: always restart: always

View File

@ -2,16 +2,20 @@ version: "3"
services: services:
ttrss: ttrss:
image: clue/ttrss image: x86dev/docker-ttrss
container_name: ttrss container_name: ttrss
restart: always restart: always
environment: environment:
- SELF_URL_PATH=https://ress.ert.space - SELF_URL_PATH=http://ress.ert.space/
- TTRSS_SELF_URL=http://ress.ert.space/
- TTRSSL_URL=ress.ert.space
- DB_PORT_5432_TCP_ADDR=ttrssdb
- DB_PORT_5432_TCP_PORT=5432
- DB_HOST=ttrssdb - DB_HOST=ttrssdb
- DB_PORT=5432 - DB_PORT=5432
- DB_TYPE=pgsql - DB_TYPE=pgsql
ports: ports:
- "8181:80" - "8181:8080"
depends_on: depends_on:
- ttrssdb - ttrssdb
ttrssdb: ttrssdb: