Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- version: '3.7'
- services:
- fullfeedrss:
- # From https://github.com/heussd/fivefilters-full-text-rss-docker
- build: .
- image: heussd/fivefilters-full-text-rss:latest
- container_name: fullfeedrss
- hostname: fullfeedrss
- environment:
- # Leave empty to disable admin section
- - FTR_ADMIN_PASSWORD=
- - TZ=Africa/Johannesburg
- labels:
- # This is a falg for Watchtower to alert me about updated images
- com.centurylinklabs.watchtower.enable: "true"
- volumes:
- # Left side of : is the physical folder on my server
- # Right side of : is the folder name inside container = don't change it
- - /srv/dev-disk-by-label-HD1/data/appdata/Config/FullFeedRSS:/var/www/html/cache
- ports:
- # Left side of : is external container port I use in my browser
- - 33425:80
- restart: unless-stopped
Advertisement
Comments
-
- 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