Skip to content

Installation And Execution (Docker)

deej Howard edited this page Dec 17, 2018 · 2 revisions

The easiest way to install FeedSpora is using Docker, but that also requires that your computer supports Docker, of course. Assuming this is true, the procedure is:

  1. Install Docker and confirm it is working correctly
  2. Clone the FeedSpora source into a suitable directory
  3. Build the Docker image (from within the FeedSpora directory) by executing docker build -t feedspora .
  4. Create a directory somewhere on your computer where the FeedSpora data will reside (such as /data/feedspora) with a media subdirectory (e.g. mkdir -p /data/feedspora/media)
  5. Create a feedspora.yml file in the FeedSpora data directory (refer to the Configuration File section)
  6. Run the FeedSpora Docker container by executing docker run --volume=/data/feedspora:/data feedspora
Clone this wiki locally