-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcompose.yml
51 lines (43 loc) · 1.14 KB
/
compose.yml
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
45
46
47
48
49
50
51
version: '3'
services:
mariadb:
image: mariadb
restart: always
volumes:
- /data/freshrss/maria:/var/lib/mysql
environment:
- "MYSQL_ROOT_PASSWORD=example"
- "MYSQL_USER=fresh"
- "MYSQL_PASSWORD=example"
- "MYSQL_DATABASE=freshrss"
freshrss:
image: freshrss/freshrss:edge
restart: unless-stopped
ports:
- 127.0.0.1:8083:80
depends_on:
- mariadb
volumes:
- '/data/freshrss/config:/var/www/FreshRSS/data'
- '/data/freshrss/extensions:/var/www/FreshRSS/extensions'
environment:
- CRON_MIN=*/20
links:
- read:read
read:
image: phpdockerio/readability-js-server
restart: always
merc:
image: wangqiru/mercury-parser-api
restart: always
fivefilters:
image: "heussd/fivefilters-full-text-rss:latest"
environment:
# Leave empty to disable admin section
- FTR_ADMIN_PASSWORD=
# When mounting rss-cache make sure to make it writable
# volumes:
# - "./rss-cache:/var/www/html/cache/rss
# I'd recommend, making this accessible for regular use
ports:
- "127.0.0.1:8006:80"