aboutsummaryrefslogtreecommitdiff
blob: b79dbaaeebf7967fe799b95f2f28cdb48a9394d8 (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
version: "3"
services:
  freshrss:
    image: freshrss/freshrss:edge
    container_name: freshrss
    restart: always
    logging:
      options:
        max-size: 10m
    volumes:
      # Recommended volume for FreshRSS persistent data such as configuration and SQLite databases
      - {{ rss_home }}/data:/var/www/FreshRSS/data
      # Optional volume for storing third-party extensions
      - {{ rss_home }}/extensions:/var/www/FreshRSS/extensions
    ports:
      # If you want to open a port 8080 on the local machine:
      - 30082:80
    environment:
      # A timezone http://php.net/timezones (default is UTC)
      TZ: America/Vancouver

  rssbot:
    build:
      context: .
      dockerfile: ./Dockerfile.rssbot
    container_name: ttrss_rssbot
    restart: always
    environment:
      - TOKEN={{ lookup('aws_ssm', '/jinwei-me/tgbot/token') }}
Powered by cgit v1.2.3 (git 2.41.0)