-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathttrss.yml
More file actions
44 lines (40 loc) · 944 Bytes
/
Copy pathttrss.yml
File metadata and controls
44 lines (40 loc) · 944 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
version: '3'
services:
app:
image: cthulhoo/ttrss-fpm-pgsql-static
restart: unless-stopped
environment:
- TTRSS_DB_USER=ttrss
- TTRSS_DB_NAME=ttrss
- TTRSS_DB_PASS=${TTRSS_DB_PASS}
- TTRSS_DB_HOST=192.168.1.107
- TTRSS_SELF_URL_PATH=https://tt-rss.latchee.com/tt-rss
volumes:
- app:/var/www/html
- tt-rss:/opt/tt-rss
updater:
image: cthulhoo/ttrss-fpm-pgsql-static
restart: unless-stopped
environment:
- TTRSS_DB_USER=ttrss
- TTRSS_DB_NAME=ttrss
- TTRSS_DB_PASS=${TTRSS_DB_PASS}
- TTRSS_DB_HOST=192.168.1.107
volumes:
- app:/var/www/html
- tt-rss:/opt/tt-rss:ro
depends_on:
- app
command: /opt/tt-rss/updater.sh
web-nginx:
image: cthulhoo/ttrss-web-nginx
restart: unless-stopped
ports:
- 8280:80
volumes:
- app:/var/www/html:ro
depends_on:
- app
volumes:
app:
tt-rss: