Advertisement
gadgeteerza

Full Text RSS docker-compose.yaml

Nov 21st, 2022
1,011
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.85 KB | Source Code | 0 0
  1. version: '3.7'
  2. services:
  3.   fullfeedrss:
  4.    # From https://github.com/heussd/fivefilters-full-text-rss-docker
  5.     build: .
  6.     image: heussd/fivefilters-full-text-rss:latest
  7.     container_name: fullfeedrss
  8.     hostname: fullfeedrss
  9.     environment:
  10.      # Leave empty to disable admin section
  11.       - FTR_ADMIN_PASSWORD=
  12.       - TZ=Africa/Johannesburg
  13.     labels:
  14.      # This is a falg for Watchtower to alert me about updated images
  15.       com.centurylinklabs.watchtower.enable: "true"
  16.     volumes:
  17.       # Left side of : is the physical folder on my server
  18.       # Right side of : is the folder name inside container = don't change it
  19.       - /srv/dev-disk-by-label-HD1/data/appdata/Config/FullFeedRSS:/var/www/html/cache
  20.     ports:
  21.      # Left side of : is external container port I use in my browser
  22.       - 33425:80
  23.     restart: unless-stopped
  24.  
Advertisement
Comments
  • gadgeteerza
    2 years
    # text 0.23 KB | 0 0
    1. It did have one quirk after setting this up. It may just be a permissions issue, but it gave an error when adding a RSS feed. I manually added a sub-folder called 'rss' without the quotes, in the mapped folder, and then it worked fine.
Add Comment
Please, Sign In to add comment
Advertisement