-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
72 lines (72 loc) · 1.95 KB
/
docker-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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
version: '3.8'
services:
freshrss:
build:
context: https://github.com/FreshRSS/FreshRSS.git#latest
dockerfile: Docker/Dockerfile-Alpine
restart: unless-stopped
container_name: freshRss
ports:
- ${FRESHRSS_PORT}:80
environment:
- TZ=${TZ}
- CRON_MIN=${CRON_MIN}
- BASE_URL=${BASE_URL}
volumes:
- freshrss_data:/var/www/FreshRSS/data
- freshrss_extensions:/var/www/FreshRSS/extensions
- ./config.php:/var/www/FreshRSS/data/config.php
labels:
- "com.centurylinklabs.watchtower.enable=true"
depends_on:
- rsshub
rsshub:
image: diygod/rsshub
restart: unless-stopped
container_name: rss_hub
environment:
- CACHE_TYPE=redis
- NODE_ENV=production
- REDIS_URL=redis://redis_db:6379
- GITHUB_ACCESS_TOKEN=${GITHUB_ACCESS_TOKEN}
ports:
- ${RSSHUB_PORT}:1200
labels:
- "com.centurylinklabs.watchtower.enable=true"
depends_on:
- redis_db
redis_db:
image: redis
build: .
container_name: redis_cache
volumes:
- redis_data:/data
labels:
- "com.centurylinklabs.watchtower.enable=true"
fullfeedrss:
image: "heussd/fivefilters-full-text-rss:latest"
container_name: full_feed_rss
environment:
# Leave empty to disable admin section
- FTR_ADMIN_PASSWORD=
volumes:
- rss-cache:/var/www/html/cache
ports:
- ${FULL_FEED_RSS_PORT}:80
labels:
- "com.centurylinklabs.watchtower.enable=true"
watchtower:
image: containrrr/watchtower
container_name: watch_tower
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
- WATCHTOWER_CLEANUP=${WATCHTOWER_CLEANUP}
- WATCHTOWER_SCHEDULE=${WATCHTOWER_SCHEDULE}
- TZ=${TZ}
- WATCHTOWER_LABEL_ENABLE=${WATCHTOWER_LABEL_ENABLE}
volumes:
freshrss_data:
freshrss_extensions:
redis_data:
rss-cache: