aboutsummaryrefslogtreecommitdiff
blob: 2d8eb773d13d7b303a45e2601d111a3176e8981b (plain) (blame)
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
version: "3"
services:
  cloudflared:
    image: cloudflare/cloudflared
    container_name: cloudflare-tunnel
    restart: always
    command: tunnel run
    environment:
      - TUNNEL_TOKEN=

  postgres:
    image: postgres:12.13
    container_name: ttrss_psql
    restart: always
    volumes:
      - ./psql:/var/lib/postgresql/data
    environment:
      - POSTGRES_PASSWORD=
      - POSTGRES_USER=ttrss
      - POSTGRES_DB=ttrss

  ttrss:
    image: wangqiru/ttrss:nightly-2023-02-15
    container_name: ttrss
    depends_on:
      - postgres
    environment:
      - SELF_URL_PATH=https://rss.jinwei.me/
      - DB_HOST=postgres
      - DB_PORT=
      - DB_NAME=ttrss
      - DB_USER=ttrss
      - DB_PASS=
      - PUID=1000
      - PGID=1000
    volumes:
      - ./feed-icons:/var/www/feed-icons/
    stdin_open: true
    tty: true
    restart: always

  rsshub:
    image: clarkzjw/rsshub
    container_name: rsshub
    restart: always

  rssbot:
    image: clarkzjw/rssbot
    container_name: rssbot
    restart: always
    environment:
      - TOKEN=
Powered by cgit v1.2.3 (git 2.41.0)