1
0
mirror of https://github.com/funkypenguin/geek-cookbook/ synced 2025-12-13 09:46:23 +00:00

Fix TTRSS recipe (#117)

This commit is contained in:
Benjamin Durham
2020-06-21 17:54:37 -07:00
committed by GitHub
parent 8b422473e8
commit 4d847cc14f
2 changed files with 7 additions and 5 deletions

View File

@@ -41,7 +41,7 @@ services:
image: mysql
volumes:
- /var/data/piwik/mysql/runtime:/var/lib/mysql
env_file: /var/data/piwik/piwik.env
env_file: /var/data/config/piwik/piwik.env
networks:
- internal
app:
@@ -90,4 +90,4 @@ networks:
Launch the Piwik stack by running ```docker stack deploy piwik -c <path -to-docker-compose.yml>```
Log into your new instance at https://**YOUR-FQDN**, and follow the wizard to complete the setup.
Log into your new instance at https://**YOUR-FQDN**, and follow the wizard to complete the setup.

View File

@@ -23,6 +23,8 @@ We'll need several directories to bind-mount into our container, so create them
mkdir /var/data/ttrss
cd /var/data/ttrss
mkdir -p {database,database-dump}
mkdir /var/data/config/ttrss
cd /var/data/config/ttrss
```
### Prepare environment
@@ -67,7 +69,7 @@ version: '3'
services:
db:
image: postgres:latest
env_file: /var/data/ttrss/ttrss.env
env_file: /var/data/config/ttrss/ttrss.env
volumes:
- /var/data/ttrss/database:/var/lib/postgresql/data
networks:
@@ -75,7 +77,7 @@ services:
app:
image: funkypenguin/docker-ttrss
env_file: /var/data/ttrss/ttrss.env
env_file: /var/data/config/ttrss/ttrss.env
deploy:
labels:
- traefik.frontend.rule=Host:ttrss.funkypenguin.co.nz
@@ -87,7 +89,7 @@ services:
db-backup:
image: postgres:latest
env_file: /var/data/ttrss/ttrss.env
env_file: /var/data/config/ttrss/ttrss.env
volumes:
- /var/data/ttrss/database-dump:/dump
- /etc/localtime:/etc/localtime:ro