From e4e7ce5ecd82114ec1cc94a01c96769f875584a1 Mon Sep 17 00:00:00 2001 From: KemoNine Date: Mon, 4 Mar 2019 23:56:19 +0000 Subject: [PATCH] Update ttrss docs for latest lollipop approach --- services/ttrss.md | 52 +++-------------------------------------------- 1 file changed, 3 insertions(+), 49 deletions(-) diff --git a/services/ttrss.md b/services/ttrss.md index 23109ea..ef43aaa 100644 --- a/services/ttrss.md +++ b/services/ttrss.md @@ -16,38 +16,7 @@ docker exec -it postgres psql -U postgres create role ttrss nocreatedb nocreaterole login PASSWORD 'password'; create database ttrss owner=ttrss encoding=UTF8; -cat > /root/docker/ttrss.sh << EOF -#!/bin/bash - -ARCH=\`arch\` -HUBIMAGE="" - -# Cleanup arch/container image here -if [ \$ARCH == "aarch64" ] -then - echo "64bit arm" - HUBIMAGE="lsioarmhf/tt-rss-aarch64:latest" -else - echo "32bit arm" - HUBIMAGE="lsioarmhf/tt-rss:latest" -fi - -# Cleanup existing container -docker stop ttrss -docker rm ttrss - -# Re-run/create container with latest image -docker run \\ - --name ttrss \\ - --restart unless-stopped \\ - --net docker-private \\ - --ip 172.30.13.13 \\ - -e TZ=UTC \\ - -e DEBUG=1 \\ - -v /var/ttrss:/config \\ - \$HUBIMAGE -EOF - +wget -O ttrss.sh https://git.lollipopcloud.solutions/lollipop-docker/misc/raw/branch/master/run_ttrss.sh chmod a+x /root/docker/ttrss.sh ``` @@ -56,26 +25,11 @@ chmod a+x /root/docker/ttrss.sh Simply execute ```/root/docker/ttrss.sh``` to update/run TT-RSS. -## Serving Via Caddy +## Cron For Feed Updates ``` bash -cat > /etc/caddy/services/ttrss.conf <